热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

org.assertj.core.api.AbstractPathAssert.existsNoFollowLinks()方法的使用及代码示例

本文整理了Java中org.assertj.core.api.AbstractPathAssert.existsNoFollowLinks()方法的一些代码示例,展示了

本文整理了Java中org.assertj.core.api.AbstractPathAssert.existsNoFollowLinks()方法的一些代码示例,展示了AbstractPathAssert.existsNoFollowLinks()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。AbstractPathAssert.existsNoFollowLinks()方法的具体详情如下:
包路径:org.assertj.core.api.AbstractPathAssert
类名称:AbstractPathAssert
方法名:existsNoFollowLinks

AbstractPathAssert.existsNoFollowLinks介绍

[英]Assert that the tested Path exists, not following symbolic links, by calling Files#exists(Path,LinkOption...)).

This assertion behaves like #exists(), with the difference that it can be used to assert the existence of a symbolic link even if its target is invalid.

Examples:

// fs is a Unix filesystem
// Create a regular file, and a symbolic link pointing to it
final Path existingFile = fs.getPath("somefile");
Files.createFile(existingFile);
final Path symlinkToExistingFile = fs.getPath("symlink");
Files.createSymbolicLink(symlinkToExistingFile, existingFile);
// Create a symbolic link whose target does not exist
final Path nOnExistentPath= fs.getPath("nonexistent");
final Path symlinkTOnonExistentPath= fs.getPath("symlinkToNonExistentPath");
Files.createSymbolicLink(symlinkToNonExistentPath, nonExistentPath);
// The following assertions succeed
assertThat(existingFile).existsNoFollowLinks();
assertThat(symlinkToExistingFile).existsNoFollowLinks();
assertThat(symlinkToNonExistentPath).existsNoFollowLinks();
// The following assertion fails
assertThat(nonExistentPath).existsNoFollowLinks();

[中]通过调用文件#exists(Path,LinkOption…),断言测试路径存在,而不是遵循符号链接。
此断言的行为类似于#exists(),区别在于它可以用于断言符号链接的存在,即使其目标无效。
示例:

// fs is a Unix filesystem
// Create a regular file, and a symbolic link pointing to it
final Path existingFile = fs.getPath("somefile");
Files.createFile(existingFile);
final Path symlinkToExistingFile = fs.getPath("symlink");
Files.createSymbolicLink(symlinkToExistingFile, existingFile);
// Create a symbolic link whose target does not exist
final Path nOnExistentPath= fs.getPath("nonexistent");
final Path symlinkTOnonExistentPath= fs.getPath("symlinkToNonExistentPath");
Files.createSymbolicLink(symlinkToNonExistentPath, nonExistentPath);
// The following assertions succeed
assertThat(existingFile).existsNoFollowLinks();
assertThat(symlinkToExistingFile).existsNoFollowLinks();
assertThat(symlinkToNonExistentPath).existsNoFollowLinks();
// The following assertion fails
assertThat(nonExistentPath).existsNoFollowLinks();

代码示例

代码示例来源:origin: de.pfabulist.lindwurm/niotest

@Test
@Category( { SymLink.class, Writable.class } )
public void testMoveLinkToNonExistingPath() throws IOException {
Files.createSymbolicLink( symLink(), absAB() );
Path to = dirTB().resolve( nameB() );
Files.move( symLink(), to );
assertThat( to ).existsNoFollowLinks();
}

代码示例来源:origin: de.pfabulist.lindwurm/niotest

@Test
@Category( { SymLink.class, Writable.class } )
public void testCreateSymLinkToNonExisting() throws IOException {
Files.createSymbolicLink( link(), absTA() );
assertThat( link() ).existsNoFollowLinks();
}

代码示例来源:origin: de.pfabulist.lindwurm/niotest

@Test
@Category( { SymLink.class } )
public void testBrokenSymLinkNoFollowLinkExists() throws IOException {
Files.createSymbolicLink( symLink(), absTA() );
assertThat( symLink() ).existsNoFollowLinks();
}

代码示例来源:origin: line/centraldogma

/**
* Makes sure {@link GitRepository} can create the legacy format repository, with Git repository format
* version 0 and hexadecimal tag encoding.
*/
@Test
public void legacyFormatCreation() {
final File repoDir0 = tempDir.getRoot();
final GitRepository repo0 = new GitRepository(proj, repoDir0, V0, commonPool(), 0L, Author.SYSTEM);
try {
assertThat(repo0.format()).isSameAs(V0);
assertThat(Paths.get(repoDir0.getPath(), "refs", "heads", "master"))
.existsNoFollowLinks()
.isRegularFile();
} finally {
repo0.internalClose();
}
}

代码示例来源:origin: line/centraldogma

/**
* Makes sure {@link GitRepository} can create the modern format repository, with Git repository format
* version 1 and simple tag encoding.
*/
@Test
public void modernFormatCreation() {
final File repoDir1 = tempDir.getRoot();
final GitRepository repo1 = new GitRepository(proj, repoDir1, commonPool(), 0L, Author.SYSTEM);
try {
assertThat(repo1.format()).isSameAs(V1);
assertThat(Paths.get(repoDir1.getPath(), "refs", "heads", "master"))
.existsNoFollowLinks()
.isRegularFile();
} finally {
repo1.internalClose();
}
}

推荐阅读
  • 本文深入探讨了 Java 中的 Serializable 接口,解释了其实现机制、用途及注意事项,帮助开发者更好地理解和使用序列化功能。 ... [详细]
  • 本文将介绍如何编写一些有趣的VBScript脚本,这些脚本可以在朋友之间进行无害的恶作剧。通过简单的代码示例,帮助您了解VBScript的基本语法和功能。 ... [详细]
  • 本文介绍如何使用布局文件在Android应用中排列多行TextView和Button,使其占据屏幕的特定比例,并提供示例代码以帮助理解和实现。 ... [详细]
  • Explore how Matterverse is redefining the metaverse experience, creating immersive and meaningful virtual environments that foster genuine connections and economic opportunities. ... [详细]
  • 尽管使用TensorFlow和PyTorch等成熟框架可以显著降低实现递归神经网络(RNN)的门槛,但对于初学者来说,理解其底层原理至关重要。本文将引导您使用NumPy从头构建一个用于自然语言处理(NLP)的RNN模型。 ... [详细]
  • 深入解析JVM垃圾收集器
    本文基于《深入理解Java虚拟机:JVM高级特性与最佳实践》第二版,详细探讨了JVM中不同类型的垃圾收集器及其工作原理。通过介绍各种垃圾收集器的特性和应用场景,帮助读者更好地理解和优化JVM内存管理。 ... [详细]
  • 本文介绍如何使用 Python 将一个字符串按照指定的行和元素分隔符进行两次拆分,最终将字符串转换为矩阵形式。通过两种不同的方法实现这一功能:一种是使用循环与 split() 方法,另一种是利用列表推导式。 ... [详细]
  • 本文详细介绍了Java中org.neo4j.helpers.collection.Iterators.single()方法的功能、使用场景及代码示例,帮助开发者更好地理解和应用该方法。 ... [详细]
  • 优化ListView性能
    本文深入探讨了如何通过多种技术手段优化ListView的性能,包括视图复用、ViewHolder模式、分批加载数据、图片优化及内存管理等。这些方法能够显著提升应用的响应速度和用户体验。 ... [详细]
  • 本文详细介绍了 GWT 中 PopupPanel 类的 onKeyDownPreview 方法,提供了多个代码示例及应用场景,帮助开发者更好地理解和使用该方法。 ... [详细]
  • Explore a common issue encountered when implementing an OAuth 1.0a API, specifically the inability to encode null objects and how to resolve it. ... [详细]
  • 本章将深入探讨移动 UI 设计的核心原则,帮助开发者构建简洁、高效且用户友好的界面。通过学习设计规则和用户体验优化技巧,您将能够创建出既美观又实用的移动应用。 ... [详细]
  • 本文详细介绍了 Apache Jena 库中的 Txn.executeWrite 方法,通过多个实际代码示例展示了其在不同场景下的应用,帮助开发者更好地理解和使用该方法。 ... [详细]
  • 本文详细介绍了 com.facebook.drawee.view.SimpleDraweeView 中的 setScaleType 方法,提供了多个实际代码示例,并解释了其在不同场景下的应用。 ... [详细]
  • 本文详细介绍了如何使用 MySQL 查询特定时间段的数据,包括今天、本周、上周、本月和上个月的数据。适合对 MySQL 查询感兴趣的读者。 ... [详细]
author-avatar
醉苏芳华
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有