Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: LayoutTests/fast/filesystem/op-move-expected.txt

Issue 22831019: Deprecate FileError in FileAPI (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: win test expectation fix (temporary) Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 * Running: MoveFileSimple 1 * Running: MoveFileSimple
2 PASS Succeeded: "/a/b".moveTo("/a", "c") 2 PASS Succeeded: "/a/b".moveTo("/a", "c")
3 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY} 3 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY}
4 PASS Verified entry does NOT exist: /a/b 4 PASS Verified entry does NOT exist: /a/b
5 PASS Verified entry: ENTRY {path:/a/c name:c type:FILE} 5 PASS Verified entry: ENTRY {path:/a/c name:c type:FILE}
6 * Running: MoveDirectorySimple 6 * Running: MoveDirectorySimple
7 PASS Succeeded: "/a/b".moveTo("/a", "c") 7 PASS Succeeded: "/a/b".moveTo("/a", "c")
8 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY} 8 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY}
9 PASS Verified entry does NOT exist: /a/b 9 PASS Verified entry does NOT exist: /a/b
10 PASS Verified entry: ENTRY {path:/a/c name:c type:DIRECTORY} 10 PASS Verified entry: ENTRY {path:/a/c name:c type:DIRECTORY}
11 * Running: MoveFileToDifferentDirectory 11 * Running: MoveFileToDifferentDirectory
12 PASS Succeeded: "/a/b".moveTo("/c", "d") 12 PASS Succeeded: "/a/b".moveTo("/c", "d")
13 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY} 13 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY}
14 PASS Verified entry does NOT exist: /a/b 14 PASS Verified entry does NOT exist: /a/b
15 PASS Verified entry: ENTRY {path:/c/d name:d type:FILE} 15 PASS Verified entry: ENTRY {path:/c/d name:d type:FILE}
16 * Running: MoveFileWithEmptyName 16 * Running: MoveFileWithEmptyName
17 PASS Succeeded: "/a/b".moveTo("/c", "null") 17 PASS Succeeded: "/a/b".moveTo("/c", "null")
18 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY} 18 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY}
19 PASS Verified entry does NOT exist: /a/b 19 PASS Verified entry does NOT exist: /a/b
20 PASS Verified entry: ENTRY {path:/c/b name:b type:FILE} 20 PASS Verified entry: ENTRY {path:/c/b name:b type:FILE}
21 * Running: MoveFileWithEmptyNameToSameDirectory 21 * Running: MoveFileWithEmptyNameToSameDirectory
22 PASS this.expectedErrorCode + "" is "9" 22 PASS this.expectedError + "" is "InvalidModificationError"
23 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY} 23 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY}
24 PASS Verified entry: ENTRY {path:/a/b name:b type:FILE} 24 PASS Verified entry: ENTRY {path:/a/b name:b type:FILE}
25 * Running: MoveFileWithSameName 25 * Running: MoveFileWithSameName
26 PASS this.expectedErrorCode + "" is "9" 26 PASS this.expectedError + "" is "InvalidModificationError"
27 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY} 27 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY}
28 PASS Verified entry: ENTRY {path:/a/b name:b type:FILE} 28 PASS Verified entry: ENTRY {path:/a/b name:b type:FILE}
29 * Running: MoveForNonExistentEntry 29 * Running: MoveForNonExistentEntry
30 PASS Succeeded: "/a/b".remove() 30 PASS Succeeded: "/a/b".remove()
31 PASS this.expectedErrorCode + "" is "1" 31 PASS this.expectedError + "" is "NotFoundError"
32 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY} 32 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY}
33 PASS Verified entry: ENTRY {path:/c name:c type:DIRECTORY} 33 PASS Verified entry: ENTRY {path:/c name:c type:DIRECTORY}
34 * Running: MoveEntryToNonExistentDirectory 34 * Running: MoveEntryToNonExistentDirectory
35 PASS Succeeded: "/c".remove() 35 PASS Succeeded: "/c".remove()
36 PASS this.expectedErrorCode + "" is "1" 36 PASS this.expectedError + "" is "NotFoundError"
37 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY} 37 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY}
38 PASS Verified entry: ENTRY {path:/a/b name:b type:FILE} 38 PASS Verified entry: ENTRY {path:/a/b name:b type:FILE}
39 * Running: MoveEntryToItsChild 39 * Running: MoveEntryToItsChild
40 PASS this.expectedErrorCode + "" is "9" 40 PASS this.expectedError + "" is "InvalidModificationError"
41 PASS this.expectedErrorCode + "" is "9" 41 PASS this.expectedError + "" is "InvalidModificationError"
42 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY} 42 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY}
43 PASS Verified entry: ENTRY {path:/a/b name:b type:DIRECTORY} 43 PASS Verified entry: ENTRY {path:/a/b name:b type:DIRECTORY}
44 PASS Verified entry: ENTRY {path:/a/b/c name:c type:DIRECTORY} 44 PASS Verified entry: ENTRY {path:/a/b/c name:c type:DIRECTORY}
45 * Running: MoveRecursive 45 * Running: MoveRecursive
46 PASS Succeeded: "/a".moveTo("/b", "a") 46 PASS Succeeded: "/a".moveTo("/b", "a")
47 PASS Verified entry does NOT exist: /a 47 PASS Verified entry does NOT exist: /a
48 PASS Verified entry: ENTRY {path:/b/a name:a type:DIRECTORY} 48 PASS Verified entry: ENTRY {path:/b/a name:a type:DIRECTORY}
49 PASS Verified entry: ENTRY {path:/b/a/b name:b type:DIRECTORY} 49 PASS Verified entry: ENTRY {path:/b/a/b name:b type:DIRECTORY}
50 PASS Verified entry: ENTRY {path:/b/a/b/c name:c type:FILE} 50 PASS Verified entry: ENTRY {path:/b/a/b/c name:c type:FILE}
51 PASS Verified entry: ENTRY {path:/b/a/b/d name:d type:FILE} 51 PASS Verified entry: ENTRY {path:/b/a/b/d name:d type:FILE}
52 * Running: OverwritingMoveFileToFile 52 * Running: OverwritingMoveFileToFile
53 PASS Succeeded: "/a".moveTo("/", "b") 53 PASS Succeeded: "/a".moveTo("/", "b")
54 PASS Verified entry: ENTRY {path:/b name:b type:FILE} 54 PASS Verified entry: ENTRY {path:/b name:b type:FILE}
55 * Running: OverwritingMoveDirectoryToEmptyDirectory 55 * Running: OverwritingMoveDirectoryToEmptyDirectory
56 PASS Succeeded: "/a".moveTo("/", "c") 56 PASS Succeeded: "/a".moveTo("/", "c")
57 PASS Verified entry: ENTRY {path:/c name:c type:DIRECTORY} 57 PASS Verified entry: ENTRY {path:/c name:c type:DIRECTORY}
58 PASS Verified entry: ENTRY {path:/c/b name:b type:FILE} 58 PASS Verified entry: ENTRY {path:/c/b name:b type:FILE}
59 PASS Verified entry does NOT exist: /a 59 PASS Verified entry does NOT exist: /a
60 * Running: OverwritingMoveFileToDirectory 60 * Running: OverwritingMoveFileToDirectory
61 PASS this.expectedErrorCode + "" is "9" 61 PASS this.expectedError + "" is "InvalidModificationError"
62 PASS Verified entry: ENTRY {path:/a name:a type:FILE} 62 PASS Verified entry: ENTRY {path:/a name:a type:FILE}
63 PASS Verified entry: ENTRY {path:/b name:b type:DIRECTORY} 63 PASS Verified entry: ENTRY {path:/b name:b type:DIRECTORY}
64 * Running: OverwritingMoveDirectoryToFile 64 * Running: OverwritingMoveDirectoryToFile
65 PASS this.expectedErrorCode + "" is "9" 65 PASS this.expectedError + "" is "InvalidModificationError"
66 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY} 66 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY}
67 PASS Verified entry: ENTRY {path:/b name:b type:FILE} 67 PASS Verified entry: ENTRY {path:/b name:b type:FILE}
68 * Running: OverwritingMoveFileToNonemptyDirectory 68 * Running: OverwritingMoveFileToNonemptyDirectory
69 PASS this.expectedErrorCode + "" is "9" 69 PASS this.expectedError + "" is "InvalidModificationError"
70 PASS Verified entry: ENTRY {path:/a name:a type:FILE} 70 PASS Verified entry: ENTRY {path:/a name:a type:FILE}
71 PASS Verified entry: ENTRY {path:/b name:b type:DIRECTORY} 71 PASS Verified entry: ENTRY {path:/b name:b type:DIRECTORY}
72 PASS Verified entry: ENTRY {path:/b/c name:c type:FILE} 72 PASS Verified entry: ENTRY {path:/b/c name:c type:FILE}
73 * Running: OverwritingMoveDirectoryToNonemptyDirectory 73 * Running: OverwritingMoveDirectoryToNonemptyDirectory
74 PASS this.expectedErrorCode + "" is "9" 74 PASS this.expectedError + "" is "InvalidModificationError"
75 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY} 75 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY}
76 PASS Verified entry: ENTRY {path:/a/b name:b type:FILE} 76 PASS Verified entry: ENTRY {path:/a/b name:b type:FILE}
77 PASS Verified entry: ENTRY {path:/c name:c type:DIRECTORY} 77 PASS Verified entry: ENTRY {path:/c name:c type:DIRECTORY}
78 PASS Verified entry: ENTRY {path:/c/d name:d type:FILE} 78 PASS Verified entry: ENTRY {path:/c/d name:d type:FILE}
79 Finished running tests. 79 Finished running tests.
80 PASS successfullyParsed is true 80 PASS successfullyParsed is true
81 81
82 TEST COMPLETE 82 TEST COMPLETE
83 83
OLDNEW
« no previous file with comments | « LayoutTests/fast/filesystem/op-get-metadata-expected.txt ('k') | LayoutTests/fast/filesystem/op-remove-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698