Lines Matching refs:assertPathEqual
79 def assertPathEqual(self, path1, path2):
321 self.assertPathEqual(ntpath.realpath(ABSTFN + "1"), ABSTFN)
322 self.assertPathEqual(ntpath.realpath(os.fsencode(ABSTFN + "1")),
361 self.assertPathEqual(ntpath.realpath(ABSTFN + "1"), ABSTFN)
384 self.assertPathEqual(ntpath.realpath("broken"),
386 self.assertPathEqual(ntpath.realpath(r"broken\foo"),
390 self.assertPathEqual(ntpath.realpath(r"broken1"),
392 self.assertPathEqual(ntpath.realpath(r"broken1\baz"),
394 self.assertPathEqual(ntpath.realpath("broken2"),
396 self.assertPathEqual(ntpath.realpath("broken3"),
398 self.assertPathEqual(ntpath.realpath("broken4"),
400 self.assertPathEqual(ntpath.realpath("broken5"),
403 self.assertPathEqual(ntpath.realpath(b"broken"),
405 self.assertPathEqual(ntpath.realpath(rb"broken\foo"),
407 self.assertPathEqual(ntpath.realpath(rb"broken1"),
409 self.assertPathEqual(ntpath.realpath(rb"broken1\baz"),
411 self.assertPathEqual(ntpath.realpath(b"broken2"),
413 self.assertPathEqual(ntpath.realpath(rb"broken3"),
415 self.assertPathEqual(ntpath.realpath(b"broken4"),
417 self.assertPathEqual(ntpath.realpath(b"broken5"),
435 self.assertPathEqual(ntpath.realpath(ABSTFN), ABSTFN)
445 self.assertPathEqual(ntpath.realpath(ABSTFN + "1\\.."),
447 self.assertPathEqual(ntpath.realpath(ABSTFN + "1\\..\\x"),
450 self.assertPathEqual(ntpath.realpath(ABSTFN + "1\\..\\"
458 self.assertPathEqual(ntpath.realpath(ABSTFN + "a"), ABSTFN + "a")
462 self.assertPathEqual(ntpath.realpath(ABSTFN + "c"), ABSTFN + "c")
465 self.assertPathEqual(ntpath.realpath(ntpath.basename(ABSTFN)), ABSTFN)
489 self.assertPathEqual(ntpath.realpath(ABSTFN + "1\\..", strict=True),
528 self.assertPathEqual(ntpath.realpath(ABSTFN + "3link"),
530 self.assertPathEqual(ntpath.realpath(ABSTFN + "3.link"),
540 self.assertPathEqual(ntpath.realpath("\\\\?\\" + ABSTFN + "3link"),
542 self.assertPathEqual(ntpath.realpath("\\\\?\\" + ABSTFN + "3.link"),
569 self.assertPathEqual(test_file_long, ntpath.realpath(test_file_short))
572 self.assertPathEqual(test_file_long, ntpath.realpath("file.txt"))
574 self.assertPathEqual(test_file_long, ntpath.realpath("file.txt"))
576 self.assertPathEqual(test_file_long, ntpath.realpath("file.txt"))
911 self.assertPathEqual(func(self.file_path), func(self.file_name))
969 self.assertPathEqual(common_path, self.file_name)