diff options
author | kinuko@chromium.org <kinuko@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2010-10-07 21:10:07 +0000 |
---|---|---|
committer | kinuko@chromium.org <kinuko@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2010-10-07 21:10:07 +0000 |
commit | 55eb5fdce0c07b5265ebb1cbf4891c84041d706a (patch) | |
tree | a916d4b686b9f4938b45019b1091b337d6cfacdb /third_party/WebKit/LayoutTests/fast/filesystem/resources/op-remove.js | |
parent | e48dc5a08cdbb8af33ebb611a01fa921b0e6a431 (diff) | |
download | chromium_src-55eb5fdce0c07b5265ebb1cbf4891c84041d706a.zip chromium_src-55eb5fdce0c07b5265ebb1cbf4891c84041d706a.tar.gz chromium_src-55eb5fdce0c07b5265ebb1cbf4891c84041d706a.tar.bz2 |
2010-10-07 Kinuko Yasuda <kinuko@chromium.org>
Reviewed by David Levin.
Add layout tests for FileSystem API
https://bugs.webkit.org/show_bug.cgi?id=44920
Added tests for major Entry operations: copyTo, moveTo, getFile,
getDirectory, remove, createReader.readEntries, getParent.
* fast/filesystem/op-copy-expected.txt: Added.
* fast/filesystem/op-copy.html: Added.
* fast/filesystem/op-get-entry-expected.txt: Added.
* fast/filesystem/op-get-entry.html: Added.
* fast/filesystem/op-get-parent-expected.txt: Added.
* fast/filesystem/op-get-parent.html: Added.
* fast/filesystem/op-move-expected.txt: Added.
* fast/filesystem/op-move.html: Added.
* fast/filesystem/op-read-directory-expected.txt: Added.
* fast/filesystem/op-read-directory.html: Added.
* fast/filesystem/op-remove-expected.txt: Added.
* fast/filesystem/op-remove.html: Added.
* fast/filesystem/op-restricted-chars-expected.txt: Added.
* fast/filesystem/op-restricted-chars.html: Added.
* fast/filesystem/op-restricted-names-expected.txt: Added.
* fast/filesystem/op-restricted-names.html: Added.
* fast/filesystem/resources/fs-test-util.js:
* fast/filesystem/resources/op-copy.js: Added.
* fast/filesystem/resources/op-get-entry.js: Added.
* fast/filesystem/resources/op-get-parent.js: Added.
* fast/filesystem/resources/op-move.js: Added.
* fast/filesystem/resources/op-read-directory.js: Added.
* fast/filesystem/resources/op-remove.js: Added.
* fast/filesystem/resources/op-restricted-chars.js: Added.
* fast/filesystem/resources/op-restricted-names.js: Added.
* fast/filesystem/resources/op-tests-helper.js: Added.
git-svn-id: svn://svn.chromium.org/blink/trunk@69339 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/filesystem/resources/op-remove.js')
-rw-r--r-- | third_party/WebKit/LayoutTests/fast/filesystem/resources/op-remove.js | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/filesystem/resources/op-remove.js b/third_party/WebKit/LayoutTests/fast/filesystem/resources/op-remove.js new file mode 100644 index 0000000..119ac82 --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/filesystem/resources/op-remove.js @@ -0,0 +1,34 @@ +var testCases = [ + { + name: 'RemoveSimple', + precondition: [ + {fullPath:'/a', isDirectory:true}, + {fullPath:'/b'} + ], + tests: [ + function(helper) { helper.remove('/a'); }, + function(helper) { helper.remove('/b'); } + ], + postcondition: [ + {fullPath:'/a', nonexistent:true}, + {fullPath:'/b', nonexistent:true} + ], + }, + { + name: 'RemoveNonRecursiveWithChildren', + precondition: [ + {fullPath:'/a', isDirectory:true}, + {fullPath:'/a/b', isDirectory:true}, + {fullPath:'/a/c',} + ], + tests: [ + function(helper) { helper.remove('/a', FileError.INVALID_MODIFICATION_ERR); } + ], + postcondition: [ + {fullPath:'/a', isDirectory:true}, + {fullPath:'/a/b', isDirectory:true}, + {fullPath:'/a/c',} + ], + }, +]; + |