test(function () {
check_no_interface_object("FileArraySuccessCallback");
}, "FileArraySuccessCallback_notexist");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
<html>
test(function () {
check_no_interface_object("FileStreamSuccessCallback");
}, "FileStreamSuccessCallback_notexist");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
<html>
}
);
});
+
</script>
</body>
</html>
-->
-<html lang="en">
+<html>
<head>
<title>FileStream_bytesAvailable_attribute</title>
<meta charset="utf-8"/>
}
);
});
+
</script>
</body>
</html>
-->
-<html lang="en">
+<html>
<head>
<title>FileStream_close</title>
<meta charset="utf-8"/>
}
);
});
+
</script>
</body>
</html>
-->
-<html lang="en">
+<html>
<head>
-<title>filesystem_FileStream_close_exist</title>
+<title>FileStream_close_exist</title>
<meta charset="utf-8"/>
<script src="../resources/unitcommon.js"></script>
<script src="support/filesystem_common.js"></script>
fsTestFileName = getFileName("existFile04.txt"),
resolveSuccess, resolveError, openStreamSuccess, openStreamError, file;
-t.step(function(){
+t.step(function (){
openStreamSuccess = t.step_func(function (fs) {
assert_true("close" in fs, "No close method in FileStream");
}
);
});
+
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileStream_close_extra_argument</title>
<meta charset="utf-8"/>
//==== TEST: FileStream_close_extra_argument
//==== LABEL Check if method close of FileStream accepts extra argument
//==== SPEC Tizen Web API:IO:Filesystem:FileStream:close M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MNAEX
var t = async_test("FileStream_close_extra_argument"),
}
);
});
+
</script>
</body>
</html>
-->
-<html lang="en">
+<html>
<head>
<title>FileStream_eof_attribute</title>
<meta charset="utf-8"/>
//==== PRIORITY P1
//==== LABEL Check attribute eof in FileStream
//==== SPEC Tizen Web API:IO:Filesystem:FileStream:eof A
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA AE ARO AT
var t = async_test("FileStream_eof_attribute"),
fsTestFileName = getFileName("existFile02.txt"),
limitations under the License.
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
<html>
<head>
-<title>FileSteram_extend</title>
+<title>FileStream_extend</title>
<script src="../resources/unitcommon.js"></script>
<script src="support/filesystem_common.js"></script>
</head>
fsTestFileName = getFileName("closeFile.txt"),
resolveSuccess, resolveError, openStreamSuccess, openStreamError, file;
-t.step(function(){
+t.step(function (){
openStreamSuccess = t.step_func(function (fs) {
check_extensibility(fs);
fs.close();
}
);
});
+
</script>
</body>
</html>
test(function () {
check_no_interface_object("FileStream");
}, "FileStream_notexist");
+
</script>
</body>
</html>
-->
-<html lang="en">
+<html>
<head>
<title>FileStream_position_attribute</title>
<meta charset="utf-8"/>
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title> filesystem test - FileStream read </title>
+<title>FileStream_read</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
resolveSuccess, resolveError, openStreamError, openStreamSuccess,
openStreamReadSuccess, file, expected = "abcde", text;
-t.step(function(){
+t.step(function (){
openStreamReadSuccess = t.step_func(function (fs) {
text = fs.read(5);
fs.close();
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title> filesystem test - FileStream readBase64 </title>
+<title>FileStream_readBase64</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
resolveSuccess, resolveError, openStreamError, openStreamSuccess,
openStreamReadSuccess, file, expected = "YWJjZGVmZw==", base64;
-t.step(function(){
+t.step(function (){
openStreamReadSuccess = t.step_func(function (fs) {
base64 = fs.readBase64(256);
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title> filesystem test - FileStream readBase64 exist </title>
+<title>FileStream_readBase64_exist</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
fsTestFileName = getFileName("existFile07.txt"),
resolveSuccess, resolveError, openStreamSuccess, openStreamError, file;
-t.step(function(){
+t.step(function (){
openStreamSuccess = t.step_func(function (fs) {
assert_true("readBase64" in fs, "readBase64 is exist");
fs.close();
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title> filesystem test - FileStream readBase64 with invalid value </title>
+<title>FileStream_readBase64_with_invalid_value</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
//==== LABEL check if throw an exception when readBase64 from a file with invalid value.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileStream:readBase64 M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
var t = async_test("FileStream_readBase64_with_invalid_value"),
fsTestFileName = getFileName("write04.txt"),
resolveSuccess, resolveError, openStreamSuccess, openStreamError,
- file, documentsDir, expected = "InvalidValuesError";
+ file, expected = "InvalidValuesError";
t.step(function () {
openStreamSuccess = t.step_func(function (fs) {
}
);
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
-
-Revision history:
-Date Author Description
-08-08-2012 Kaiyu <kaiyux.li@intel.com> create
-06-04-2013 Mariusz Polasinski <m.polasinski@samsung.com> amendments
+ Kaiyu <kaiyux.li@intel.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<meta charset="utf-8" />
<title>FileStream_readBase64_without_r_permission</title>
//==== LABEL check if throw an exception when read the specified number of bytes from a file without r permission and encoding the result in base64.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileStream:readBase64 M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
var t = async_test("FileStream_readBase64_without_r_permission"), testFile,
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title>check if create a new empty file and write content of the file and then read the content of the file as base64</title>
+<title>FileStream_readBase64_writeFile</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
//==== LABEL check if create a new empty file and write content of the file and then read the content of the file as base64
//==== PRIORITY P3
//==== SPEC Tizen Web API:IO:Filesystem:FileStream:FileStream U
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
var t = async_test("FileStream_readBase64_writeFile"),
resolveSuccess, resolveError, openStreamError, openStreamSuccess,
openStreamReadSuccess, file, expected = "YWJjZGVmZw==", base64;
-t.step(function(){
+t.step(function (){
openStreamReadSuccess = t.step_func(function (fs) {
base64 = fs.readBase64(256);
fs.close();
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title> filesystem test - FileStream readBytes </title>
+<title>FileStream_readBytes</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script src="support/filesystem_common.js"></script>
</head>
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title> filesystem test - FileStream readBytes exist </title>
+<title>FileStream_readBytes_exist</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
fsTestFileName = getFileName("existFile06.txt"),
resolveSuccess, resolveError, openStreamSuccess, openStreamError, file;
-t.step(function(){
+t.step(function (){
openStreamSuccess = t.step_func(function (fs) {
assert_true("readBytes" in fs, "readBytes is exist");
fs.close();
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title> filesystem test - FileStream readBytes with invalid value </title>
+<title>FileStream_readBytes_with_invalid_value</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
//==== LABEL check if throw an exception when readBytes from a file with invalid value.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileStream:readBytes M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
var t = async_test("FileStream_readBytes_with_invalid_value"),
}
);
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
-
-Revision history:
-Date Author Description
-08-08-2012 Kaiyu <kaiyux.li@intel.com> create
-06-04-2013 Mariusz Polasinski <m.polasinski@samsung.com> amendments
+ Kaiyu <kaiyux.li@intel.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileStream_readBytes_without_r_permission</title>
<script type="text/javascript" src="../resources/testharness.js"></script>
//==== LABEL check if throw an exception when read the specified number of bytes from a file without r permission.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileStream:readBytes M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
var t = async_test("FileStream_readBytes_without_r_permission"), testFile,
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title>check if create a new empty file and write content of the file and then read the content of the file as a byte array</title>
+<title>FileStream_readBytes_writeFile</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
//==== LABEL check if create a new empty file and write content of the file and then read the content of the file as a byte array
//==== PRIORITY P3
//==== SPEC Tizen Web API:IO:Filesystem:FileStream:FileStream U
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
var t = async_test("FileStream_readBytes_writeFile"),
resolveSuccess, resolveError, openStreamError, openStreamSuccess,
openStreamReadSuccess, file, expected = 7, bytes;
-t.step(function(){
+t.step(function (){
openStreamReadSuccess = t.step_func(function (fs) {
bytes = fs.readBytes(256);
fs.close();
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title> filesystem test - FileStream read exist </title>
+<title>FileStream_read_exist</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
fsTestFileName = getFileName("existFile05.txt"),
resolveSuccess, resolveError, openStreamSuccess, openStreamError, file;
-t.step(function(){
+t.step(function (){
openStreamSuccess = t.step_func(function (fs) {
assert_true("read" in fs, "read is exist");
fs.close();
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title> filesystem test - FileStream read with invalid value </title>
+<title>FileStream_read_with_invalid_value</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
//==== LABEL check if throw an exception when read a file with invalid value.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileStream:read M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
var t = async_test("FileStream_read_with_invalid_value"),
}
);
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
-
-Revision history:
-Date Author Description
-08-08-2012 Kaiyu <kaiyux.li@intel.com> create
- Beata Koziarek <b.koziarek@samsung.com>
-06-04-2013 Mariusz Polasinski <m.polasinski@samsung.com> amendments
+ Kaiyu <kaiyux.li@intel.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title> filesystem test - FileStream read without r permission </title>
+<title>FileStream_read_without_r_permission</title>
<meta charset="utf-8" />
<script type="text/javascript" src="../resources/testharness.js"></script>
<script type="text/javascript" src="../resources/testharnessreport.js"></script>
//==== LABEL check if throw an exception when read a file without r permission.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileStream:read M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
var t = async_test("FileStream_read_without_r_permission"),
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title>check if create a new empty file and write content of the file and then read the content of the file</title>
+<title>FileStream_read_writeFile</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
//==== LABEL check if create a new empty file and write content of the file and then read the content of the file
//==== PRIORITY P3
//==== SPEC Tizen Web API:IO:Filesystem:FileStream:FileStream U
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
var t = async_test("FileStream_read_writeFile"),
openStreamRSuccess, file, expected = "test write method", text,
fsTestFileName = getFileName("fileSystem-File05.txt");
-t.step(function(){
+t.step(function (){
openStreamRSuccess = t.step_func(function (fs) {
text = fs.read(expected.length);
fs.close();
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title> FileStream_write </title>
+<title>FileStream_write</title>
<script src="../resources/unitcommon.js"></script>
<script src="support/filesystem_common.js"></script>
</head>
}
);
});
+
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileStream_writeBase64</title>
<meta charset="utf-8"/>
//==== TEST: FileStream_writeBase64
//==== LABEL Check if method writeBase64 of FileStream works properly.
//==== SPEC Tizen Web API:IO:Filesystem:FileStream:writeBase64 M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MAST MMINA MR
var t = async_test("FileStream_writeBase64"),
resolveSuccess, resolveError, openStreamWSuccess, openStreamRSuccess, retVal,
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title> filesystem test - FileStream writeBase64 exist </title>
+<title>FileStream_writeBase64_exist</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
resolveSuccess, resolveError, openStreamSuccess, openStreamError, file,
fsTestFileName = getFileName("readBaseFile.txt");
-t.step(function(){
+t.step(function (){
openStreamSuccess = t.step_func(function (fs) {
assert_true("writeBase64" in fs, "writeBase64 is exist");
fs.close();
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title> filesystem test - FileStream writeBase64 without w permission </title>
+<title>FileStream_writeBase64_without_w_permission</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
//==== LABEL check if throw an exception when write the specified bytes to a file without w permission and encoding the result in base64.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileStream:writeBase64 M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
var resolveSuccess, resolveError, openStreamSuccess, openStreamError, file,
t = async_test("FileStream_writeBase64_without_w_permission"),
fsTestFileName = getFileName("write11.txt");
-t.step(function(){
+t.step(function (){
openStreamSuccess = t.step_func(function (fs) {
assert_throws({name: expected}, function () {
fs.writeBase64(base);
}
);
});
+
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileStream_writeBytes</title>
<meta charset="utf-8"/>
//==== TEST: FileStream_writeBytes
//==== LABEL Check if method writeBytes of FileStream works properly.
//==== SPEC Tizen Web API:IO:Filesystem:FileStream:writeBytes M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MAST MMINA MR
var t = async_test("FileStream_writeBytes"),
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileStream_writeBytes_byteData_TypeMismatch</title>
<meta charset="utf-8"/>
//==== LABEL Check argument onError conversions exception in writeBytes method.
//==== PRIORITY: P2
//==== SPEC Tizen Web API:IO:Filesystem:FileStream:writeBytes M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
// Check if method writeBytes of FileStream works properly.
file, conversionTable, bytes, i, exceptionName = "TypeMismatchError",
fsTestFileName = getFileName("readBytesFiletest3.txt");
-t.step(function(){
+t.step(function (){
openStreamSuccess = t.step_func(function (fs) {
conversionTable = getTypeConversionExceptions("array", false);
for (i = 0; i < conversionTable.length; i++) {
<html>
<head>
-<title> filesystem test - FileStream writeBytes exist </title>
+<title>FileStream_writeBytes_exist</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
resolveSuccess, resolveError, openStreamSuccess, openStreamError, file,
fsTestFileName = getFileName("existFile09.txt");
-t.step(function(){
+t.step(function (){
openStreamSuccess = t.step_func(function (fs) {
assert_true("writeBytes" in fs, "writeBytes is exist");
fs.close();
}
);
});
+
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileStream_writeBytes_missarg</title>
<meta charset="utf-8"/>
//==== TEST: FileStream_writeBytes_missarg
//==== LABEL Check if writeBytes of FileStream with missing non-optional argument works
//==== SPEC Tizen Web API:IO:Filesystem:FileStream:writeBytes M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMA
// Check if method writeBytes of FileStream works properly.
expected = "TypeMismatchError",
fsTestFileName = getFileName("readBytesFiletest2.txt");
-t.step(function(){
+t.step(function (){
openStreamSuccess = t.step_func(function (fs) {
assert_throws({name: expected}, function () {
fs.writeBytes();
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileStream_writeBytes_with_additional_null_parameter</title>
//==== TEST: FileStream_writeBytes_with_additional_null_parameter
//==== LABEL check whether 'writeBytes' method properly writes the specified bytes to FileStream
//==== SPEC Tizen Web API:IO:Filesystem:FileStream:writeBytes M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#writeBytesid2595057
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MAST
var t = async_test("FileStream_writeBytes_with_additional_null_parameter"),
file, resolveSuccess, resolveError, openStreamWriteSuccess,
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title> filesystem test - FileStream writeBytes without w permission </title>
+<title>FileStream_writeBytes_without_w_permission</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
//==== LABEL check if throw an exception when write the specified bytes to a file without w permission.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileStream:writeBytes M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
// check if throw an exception when write the specified bytes to a file without w permission.
bytes = new Array(104,101,108), expected = "IOError",
fsTestFileName = getFileName("writeBytesWOPerm.txt");
-t.step(function(){
+t.step(function (){
openStreamSuccess = t.step_func(function (fs) {
assert_throws({name: expected}, function () {
fs.writeBytes(bytes);
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title> filesystem test - FileStream write exist </title>
+<title>FileStream_write_exist</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
fsTestFileName = getFileName("existFile08.txt"),
resolveSuccess, resolveError, openStreamSuccess, openStreamError, file;
-t.step(function(){
+t.step(function (){
openStreamSuccess = t.step_func(function (fs) {
assert_true("write" in fs, "write is exist");
fs.close();
}
);
});
+
</script>
</body>
</html>
-->
-<html lang="en">
+<html>
<head>
<title>FileStream_write_without_w_permission</title>
<meta charset="utf-8" />
//==== LABEL check if throw an exception when write a file without w permission.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileStream:write M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
var t = async_test("FileStream_write_without_w_permission"),
resolveSuccess, resolveError, openStreamSuccess, openStreamError, file,
expected = "IOError";
-t.step(function(){
+t.step(function (){
openStreamSuccess = t.step_func(function (fs) {
assert_throws({name: expected}, function () {
fs.write("test");
test(function () {
check_no_interface_object("FileStringSuccessCallback");
}, "FileStringSuccessCallback_notexist");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski<m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
<html>
}
);
});
+
</script>
</body>
</html>
test(function () {
check_no_interface_object("FileSuccessCallback");
}, "FileSuccessCallback_notexist");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<meta charset="utf-8"/>
<title>FileSuccessCallback_onsuccess</title>
tizen.filesystem.resolve("images", resolveSuccess, resolveError, "rw");
});
+
</script>
</body>
</html>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManagerObject_notexist</title>
//==== TEST: FileSystemManagerObject_notexist
//==== LABEL check if FileSystemManagerObject not exist
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManagerObject:FileSystemManagerObject U
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== PRIORITY P3
//==== TEST_CRITERIA NIO
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_addStorageStateChangeListener</title>
<meta charset="utf-8"/>
//==== TEST: FileSystemManager_addStorageStateChangeListener
//==== LABEL Check addStorageStateChangeListener with non-optional arguments
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:addStorageStateChangeListener M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMINA MR
// Check addStorageStateChangeListener with non-optional arguments
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_addStorageStateChangeListener_exist</title>
<meta charset="utf-8"/>
//==== LABEL Check if method addStorageStateChangeListener of FileSystemManager exists
//==== PRIORITY P0
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:addStorageStateChangeListener M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA ME
test(function () {
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_addStorageStateChangeListener_missarg</title>
<meta charset="utf-8"/>
//==== PRIORITY P2
//==== LABEL Check with missing non-optional argument in addStorageStateChangeListener method
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:addStorageStateChangeListener M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMA
-test(function() {
+test(function () {
assert_throws({ name: "TypeMismatchError" },
function () {
tizen.filesystem.addStorageStateChangeListener();
}, "Method should throw an exception");
}, "FileSystemManager_addStorageStateChangeListener_missarg");
-
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_addStorageStateChangeListener_onerror_TypeMismatch</title>
<meta charset="utf-8"/>
//==== PRIORITY P2
//==== LABEL Check argument onerror conversions exception in addStorageStateChangeListener method.
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:addStorageStateChangeListener M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
var t = async_test("FileSystemManager_addStorageStateChangeListener_onerror_TypeMismatch"), i,
}
t.done();
});
+
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_addStorageStateChangeListener_onerror_invalid_cb</title>
<meta charset="utf-8"/>
//==== PRIORITY P2
//==== LABEL Check argument onError validation in addStorageStateChangeListener method onerror callback
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:addStorageStateChangeListener M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTCB
// Check argument onError validation
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_addStorageStateChangeListener_onsuccess_TypeMismatch</title>
<meta charset="utf-8"/>
//==== PRIORITY P2
//==== LABEL Check argument onSuccess conversions exception in addStorageStateChangeListener method
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:addStorageStateChangeListener M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
// Check argument onSuccess conversions exception
}
t.done();
});
+
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title>FileSystemManager_getStorage_onsuccess_invalid_cb</title>
+<title>FileSystemManager_addStorageStateChangeListener_onsuccess_invalid_cb</title>
<meta charset="utf-8"/>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
</head>
//==== PRIORITY P2
//==== LABEL Check argument onSuccess validation in addStorageStateChangeListener method onsuccess callback
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:addStorageStateChangeListener M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTCB
// Check argument onSuccess validation
t.step(function () {
incorrectCallback = {
- onsuccess: t.step_func(function(){
+ onsuccess: t.step_func(function (){
assert_unreached("Invalid callback invoked: ");
})
};
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title>FileSystemManager_getStorage_with_onerror</title>
+<title>FileSystemManager_addStorageStateChangeListener_with_onerror</title>
<meta charset="utf-8"/>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
</head>
//==== PRIORITY P1
//==== LABEL Check with optional arguments addStorageStateChangeListener
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:addStorageStateChangeListener M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
// Check with optional arguments getStorage
var t = async_test("FileSystemManager_addStorageStateChangeListener_with_onerror"),
onError, successCallback;
-t.step(function(){
+t.step(function (){
onError = t.step_func(function (error) {
assert_unreached("Error: " + error.message);
});
tizen.filesystem.addStorageStateChangeListener(successCallback, onError);
});
+
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title>filesystem/UTC_filesystem</title>
+<title>FileSystemManager_addStorageStateChangeListener_without_arguments</title>
<meta charset="utf-8">
-<script>window.onError = function(e) { console.log(e); }; </script>
+<script>window.onError = function (e) { console.log(e); };</script>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== PRIORITY P2
//==== LABEL check whether invoking 'addStorageStateChangeListener' method without any argument throws exception properly
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:addStorageStateChangeListener M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#listStoragesid2590135
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMA
test(function () {
assert_throws({
Authors:
- Piotr Czaja <p.czaja@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_extend</title>
<meta charset="utf-8"/>
//==== PRIORITY P3
//==== LABEL Check if instance of interface FileSystemManager can be extended with new property
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:FileSystemManager U
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA OBX
test(function () {
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
- Piotr Czaja <p.czaja@samsung.com>
- Beata Koziarek <b.koziarek@samsung.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
+ Piotr Czaja <p.czaja@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_getStorage</title>
<meta charset="utf-8"/>
//==== PRIORITY P1
//==== LABEL Check with non-optional arguments getStorage
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:getStorage M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMINA MR
// Check with non-optional arguments getStorage
});
tizen.filesystem.listStorages(successCallback, onError);
});
+
</script>
</body>
</html>
Authors:
- Piotr Czaja <p.czaja@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_getStorage_exist</title>
<meta charset="utf-8"/>
//==== TEST: FileSystemManager_getStorage_exist
//==== LABEL Check if method getStorage of FileSystemManager exists
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:getStorage M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA ME
test(function () {
Authors:
- Piotr Czaja <p.czaja@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_getStorage_missarg</title>
<meta charset="utf-8"/>
//==== PRIORITY P2
//==== LABEL Check with missing non-optional argument in getStorage method
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:getStorage M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMA
-test(function() {
+test(function () {
assert_throws({ name: "TypeMismatchError" },
function () {
tizen.filesystem.getStorage();
}, "Method should throw an exception");
}, "FileSystemManager_getStorage_missarg");
-
</script>
</body>
</html>
Authors:
- Piotr Czaja <p.czaja@samsung.com>
- Beata Koziarek <b.koziarek@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_getStorage_onerror_TypeMismatch</title>
<meta charset="utf-8"/>
//==== PRIORITY P2
//==== LABEL Check argument onerror conversions exception in getStorage method.
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:getStorage M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
// Check argument onError conversions exception
tizen.filesystem.listStorages(listStoragesSuccess, listStoragesError);
});
+
</script>
</body>
</html>
Authors:
- Piotr Czaja <p.czaja@samsung.com>
- Beata Koziarek <b.koziarek@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_getStorage_onerror_invalid_cb</title>
<meta charset="utf-8"/>
//==== PRIORITY P2
//==== LABEL Check argument onError validation in getStorage method onerror callback
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:getStorage M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTCB
// Check argument onError validation
assert_unreached("getStorage success callback invoked.");
});
getStorageIncorrect = {
- onerror: t.step_func(function(){
+ onerror: t.step_func(function (){
assert_unreached("Invalid callback invoked: ");
})
};
Authors:
- Piotr Czaja <p.czaja@samsung.com>
- Beata Koziarek <b.koziarek@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_getStorage_onsuccess_TypeMismatch</title>
<meta charset="utf-8"/>
//==== PRIORITY P2
//==== LABEL Check argument onSuccess conversions exception in getStorage method
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:getStorage M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
// Check argument onSuccess conversions exception
tizen.filesystem.listStorages(listStoragesSuccess, listStoragesError);
});
+
</script>
</body>
</html>
Authors:
- Piotr Czaja <p.czaja@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_getStorage_onsuccess_invalid_cb</title>
<meta charset="utf-8"/>
//==== PRIORITY P2
//==== LABEL Check argument onSuccess validation in getStorage method onsuccess callback
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:getStorage M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTCB
// Check argument onSuccess validation
t.step(function () {
getStorageIncorrect = {
- onsuccess: t.step_func(function(){
+ onsuccess: t.step_func(function (){
assert_unreached("Invalid callback invoked: ");
})
};
<html>
</head>
-<title> filesystem test - FileSystemManager getStorage with nonexist label</title>
+<title>FileSystemManager_getStorage_with_nonexist_label</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
</head>
//==== LABEL check if throw an exception when get information about a storage based on nonexist label.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:getStorage M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
// check if get information about a storage based on nonexist label
var t = async_test("FileSystemManager_getStorage_with_nonexist_label"),
onSuccess, onError, expected = "NotFoundError";
-t.step(function(){
+t.step(function (){
onSuccess = t.step_func(function (storages) {
assert_unreached("should throw an exception");
});
tizen.filesystem.getStorage("MMC", onSuccess, onError);
});
+
</script>
</body>
</html>
Authors:
- Piotr Czaja <p.czaja@samsung.com>
- Beata Koziarek <b.koziarek@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_getStorage_with_onerror</title>
<meta charset="utf-8"/>
//==== PRIORITY P1
//==== LABEL Check with optional arguments getStorage
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:getStorage M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
// Check with optional arguments getStorage
var t = async_test("FileSystemManager_getStorage_with_onerror"),
getStorageSuccess, getStorageError, listStoragesSuccess, listStoragesError;
-t.step(function(){
+t.step(function (){
getStorageSuccess = t.step_func(function (storage) {
t.done();
});
tizen.filesystem.listStorages(listStoragesSuccess, listStoragesError);
});
+
</script>
</body>
</html>
Authors:
- Piotr Czaja <p.czaja@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_in_tizen</title>
<meta charset="utf-8"/>
//==== LABEL Check if FileSystemManager exists in tizen.
//==== PRIORITY: P3
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:FileSystemManager U
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA OBME
-test(function() {
+test(function () {
assert_true("filesystem" in tizen, "No FileSystemManager in tizen.");
check_readonly(tizen, "filesystem", tizen.filesystem, "object", "dummyValue");
}, "FileSystemManager_in_tizen");
Authors:
- Piotr Czaja <p.czaja@samsung.com>
- Beata Koziarek <b.koziarek@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_listStorages</title>
<meta charset="utf-8"/>
//==== PRIORITY P1
//==== LABEL Check with non-optional argument
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:listStorages M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMINA MR
// check if list the available storages on the device.
Authors:
- Piotr Czaja <p.czaja@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_listStorages_exist</title>
<meta charset="utf-8"/>
//==== TEST: FileSystemManager_listStorages_exist
//==== LABEL Check if method listStorages of FileSystemManager exists
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:listStorages M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA ME
test(function () {
Authors:
- Piotr Czaja <p.czaja@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_listStorages_missarg</title>
<meta charset="utf-8"/>
//==== PRIORITY P2
//==== LABEL Check with missing non-optional argument in listStorages method
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:listStorages M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMA
-test(function() {
+test(function () {
assert_throws({ name: "TypeMismatchError" },
function () {
tizen.filesystem.listStorages();
Authors:
- Piotr Czaja <p.czaja@samsung.com>
- Beata Koziarek <b.koziarek@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_listStorages_onerror_TypeMismatch</title>
<meta charset="utf-8"/>
//==== PRIORITY P2
//==== LABEL Check argument onerror conversions exception in listStorages method.
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:listStorages M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
// Check argument onError conversions exception
Authors:
- Piotr Czaja <p.czaja@samsung.com>
- Beata Koziarek <b.koziarek@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_listStorages_onerror_invalid_cb</title>
<meta charset="utf-8"/>
//==== PRIORITY P2
//==== LABEL Check argument onError validation in listStorages method onerror callback
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:listStorages M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTCB
// Check argument onError validation
});
listStoragesIncorrect = {
- onerror: t.step_func(function(){
+ onerror: t.step_func(function (){
assert_unreached("Invalid callback invoked: ");
})
};
Authors:
- Piotr Czaja <p.czaja@samsung.com>
- Beata Koziarek <b.koziarek@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_listStorages_onsuccess_TypeMismatch</title>
<meta charset="utf-8"/>
//==== PRIORITY P2
//==== LABEL Check argument onSuccess conversions exception in listStorages method
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:listStorages M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
// Check argument onSuccess conversions exception
Authors:
- Piotr Czaja <p.czaja@samsung.com>
- Beata Koziarek <b.koziarek@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_listStorages_onsuccess_invalid_cb</title>
<meta charset="utf-8"/>
//==== PRIORITY P2
//==== LABEL Check argument onSuccess validation in listStorages method onsuccess callback
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:listStorages M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTCB
// Check argument onSuccess validation
t.step(function () {
listStoragesIncorrect = {
- onsuccess: t.step_func(function(){
+ onsuccess: t.step_func(function (){
assert_unreached("Invalid callback invoked: ");
})
};
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title>filesystem/UTC_filesystem</title>
+<title>FileSystemManager_listStorages_storages_retrieve</title>
<meta charset="utf-8">
<script src="../resources/unitcommon.js"></script>
<script src="support/filesystem_common.js"></script>
//==== TEST: FileSystemManager_listStorages_storages_retrieve
//==== LABEL check whether 'listStorages' method properly retrieves the available storages on the device
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:listStorages M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#listStoragesid2590135
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var t = async_test("FileSystemManager_listStorages_storages_retrieve"),
onSuccess, onError, labels;
-t.step(function() {
- onSuccess = t.step_func(function(storages) {
- labels = storages.map(function(item) {
+t.step(function () {
+ onSuccess = t.step_func(function (storages) {
+ labels = storages.map(function (item) {
return item.label;
});
assert_true(labels.indexOf("documents") > -1, "includes 'documents'");
t.done();
});
- onError = t.step_func(function(error) {
+ onError = t.step_func(function (error) {
assert_unreached("listStorages() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
tizen.filesystem.listStorages(onSuccess, onError);
});
+
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title>filesystem/UTC_filesystem</title>
+<title>FileSystemManager_listStorages_with_invalid_error_callbacks</title>
<meta charset="utf-8">
<script src="../resources/unitcommon.js"></script>
<script src="support/filesystem_common.js"></script>
//==== LABEL check whether invoking 'listStorages' method with improper argument throws exception properly
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:listStorages M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#listStoragesid2590135
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
var t = async_test("FileSystemManager_listStorages_with_invalid_error_callbacks"),
invalid_type_params = [123, "abc", true, {}], getStorageSuccess, i;
Authors:
- Piotr Czaja <p.czaja@samsung.com>
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_listStorages_with_onerror</title>
<meta charset="utf-8"/>
//==== PRIORITY P1
//==== LABEL Check with optional arguments listStorages
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:listStorages M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA MR
var t = async_test("FileSystemManager_listStorages_with_onerror"),
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title>filesystem/UTC_filesystem</title>
+<title>FileSystemManager_listStorages_without_arguments</title>
<meta charset="utf-8">
<script src="../resources/unitcommon.js"></script>
<script src="support/filesystem_common.js"></script>
//==== TEST: FileSystemManager_listStorages_without_arguments
//==== LABEL check whether invoking 'listStorages' method without any argument throws exception properly
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:listStorages M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#listStoragesid2590135
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMA
test(function () {
assert_throws({
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_listStorages_works_correctly</title>
<meta charset="utf-8">
//==== TEST: FileSystemManager_listStorages_works_correctly
//==== LABEL check whether 'listStorages' method returns the available storages on the device
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:listStorages M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#listStoragesid2590135
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var this_test = async_test("FileSystemManager_listStorages_works_correctly"),
listStoragesSuccess, listStoragesError;
Authors:
- Piotr Czaja <p.czaja@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_maxPathLength_attribute</title>
<meta charset="utf-8"/>
//==== PRIORITY P1
//==== LABEL Check if maxPathLength attribute exists
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:maxPathLength A
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA AE AT ARO
test(function () {
Authors:
- Piotr Czaja <p.czaja@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_notexist</title>
<meta charset="utf-8"/>
//==== PRIORITY P3
//==== LABEL Check if interface FileSystemManager exists, it should not.
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:FileSystemManager U
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA NIO
test(function () {
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_removeStorageStateChangeListener</title>
<meta charset="utf-8"/>
//==== TEST: FileSystemManager_removeStorageStateChangeListener
//==== LABEL Check removeStorageStateChangeListener with non-optional arguments
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:removeStorageStateChangeListener M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMINA MR
// Check removeStorageStateChangeListener with non-optional arguments
Authors:
Kaiyu <kaiyux.li@intel.com>
Beata Koziarek <b.koziarek@samsung.com>
-Revision history:
-Date Author Description
-04-12-2012 Kaiyu <kaiyux.li@intel.com> create
-->
-<html lang="en">
+<html>
<head>
-<title> filesystem test - FileSystemManager removeStorageStateChangeListener exist</title>
+<title>FileSystemManager_removeStorageStateChangeListener_exist</title>
<script src="../resources/unitcommon.js"></script>
</head>
<body>
//==== TEST: FileSystemManager_removeStorageStateChangeListener_exist
//==== LABEL Check if method removeStorageStateChangeListener of FileSystemManager exists
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:removeStorageStateChangeListener M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA ME
test(function () {
check_method_exists(tizen.filesystem,
"removeStorageStateChangeListener");
}, "FileSystemManager_removeStorageStateChangeListener_exist");
+
</script>
</body>
</html>
Authors:
Kaiyu <kaiyux.li@intel.com>
-Revision history:
-Date Author Description
-08-05-2012 Kaiyu <kaiyux.li@intel.com> create
-
-->
-<html lang="en">
+<html>
<head>
-<title> filesystem test - FileSystemManager removeStorageStateChangeListener with para invalid </title>
+<title>FileSystemManager_removeStorageStateChangeListener_with_para_invalid</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
//==== LABEL check if throw an exception when removeStorageStateChangeListener with an invalid input parameter.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:removeStorageStateChangeListener M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
-test(function() {
+test(function () {
var watchID;
assert_throws({
"name": NOT_FOUND_ERR
- }, function() {
+ }, function () {
tizen.filesystem.removeStorageStateChangeListener(watchID);
});
}, "FileSystemManager_removeStorageStateChangeListener_with_para_invalid");
// Check tizen.filesystem.removeStorageStateChangeListener throws TypeMismatchError
+
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_removeStorageStateChangeListener_works_correctly</title>
//==== TEST: FileSystemManager_removeStorageStateChangeListener_works_correctly
//==== LABEL check whether 'removeStorageStateChangeListener' method properly deregisters subscription to receive notifications about a storage state changes
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:removeStorageStateChangeListener M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#removeStorageStateChangeListenerid2587583
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMINA
test(function () {
var watchId;
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== PRIORITY P1
//==== LABEL Check with non-optional arguments resolve
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMINA MR
var t = async_test("FileSystemManager_resolve"),
retValue = tizen.filesystem.resolve("documents", resolveSuccess);
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
-<html lang="en">
+<html>
<head>
-<title> FileSystemManager_resolve_documents </title>
+<title>FileSystemManager_resolve_documents</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL check if resolve documents to a file handle.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_downloads</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== LABEL check if resolve downloads to a file handle.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
tizen.filesystem.resolve("downloads", resolveSuccess, resolveError, "rw");
});
+
</script>
</body>
</html>
Authors:
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<meta charset="utf-8"/>
<title>FileSystemManager_resolve_error_invoked</title>
//==== PRIORITY P2
//==== LABEL check with error callback invoked
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA MERRCB
var t = async_test("FileSystemManager_resolve_error_invoked"),
tizen.filesystem.resolve("/opt", resolveSuccess, resolveError);
});
+
</script>
</body>
</html>
Authors:
- Piotr Czaja <p.czaja@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_exist</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== PRIORITY P0
//==== LABEL Check if method can be overriden
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA ME
test(function () {
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_images</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== TEST: FileSystemManager_resolve_images
//==== LABEL: Check if resolve images to a file handle.
//==== SPEC: Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var resolveSuccess, resolveError, expected = "images",
t = async_test("FileSystemManager_resolve_images");
-t.step(function(){
+t.step(function (){
resolveSuccess = t.step_func(function (dir) {
assert_equals(dir.path, expected, "resolve images to a file handle");
t.done();
tizen.filesystem.resolve("images", resolveSuccess, resolveError, "rw");
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_invalid_location</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== LABEL check if throw an exception when resolve an invalid location.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
var t = async_test("FileSystemManager_resolve_invalid_location"),
expected = "NotFoundError", resolveSuccess, resolveError;
-t.step(function(){
+t.step(function (){
resolveSuccess = t.step_func(function (dir) {
assert_unreached("There is no exception thrown when resolve an invalid location");
});
tizen.filesystem.resolve("hello", resolveSuccess, resolveError, "rw");
});
+
</script>
</body>
</html>
Authors:
- Piotr Czaja <p.czaja@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_missarg</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== LABEL Check with missing non-optional argument in resolve method
//==== PRIORITY P0
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMA
test(function () {
Authors:
- Piotr Czaja <p.czaja@samsung.com>
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_mode_TypeMismatch</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== PRIORITY P2
//==== LABEL Check argument mode conversions exception
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
var t = async_test("FileSystemManager_resolve_mode_TypeMismatch"),
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_mode_a</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== LABEL check if resolve a location with mode a.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var resolveSuccess, resolveError, expected = "documents",
t = async_test("FileSystemManager_resolve_mode_a");
-t.step(function(){
+t.step(function (){
resolveSuccess = t.step_func(function (dir) {
assert_equals(dir.path, expected, "resolve a location with 'a' mode");
t.done();
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "a");
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_mode_r</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== LABEL check if resolve a location with mode r.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var resolveSuccess, resolveError, expected = "documents",
t = async_test("FileSystemManager_resolve_mode_r");
-t.step(function(){
+t.step(function (){
resolveSuccess = t.step_func(function (dir) {
assert_equals(dir.path ,expected, "resolve a location with an mode r");
t.done();
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "r");
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_mode_w</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== LABEL check if resolve a location with mode w.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var resolveSuccess, resolveError, expected = "documents",
t = async_test("FileSystemManager_resolve_mode_w");
-t.step(function(){
+t.step(function (){
resolveSuccess = t.step_func(function (dir) {
assert_equals(dir.path ,expected, "resolve a location with an mode w");
t.done();
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "w");
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_music</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== LABEL check if resolve music to a file handle.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var resolveSuccess, resolveError, expected = "music",
t = async_test("FileSystemManager_resolve_music");
-t.step(function(){
+t.step(function (){
resolveSuccess = t.step_func(function (dir) {
assert_equals(dir.path ,expected, "resolve music to a file handle");
t.done();
tizen.filesystem.resolve("music", resolveSuccess, resolveError, "rw");
});
+
</script>
</body>
</html>
Authors:
- Piotr Czaja <p.czaja@samsung.com>
- Beata Koziarek <b.koziarek@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_onerror_TypeMismatch</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== PRIORITY P2
//==== LABEL Check argument onerror conversions exception in resolve method.
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
var t = async_test("FileSystemManager_resolve_onerror_TypeMismatch"), i,
Authors:
- Piotr Czaja <p.czaja@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_onerror_invalid_cb</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== PRIORITY P2
//==== LABEL Check argument onError validation in resolve method onerror callback
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTCB
var t = async_test("FileSystemManager_resolve_onerror_invalid_cb"),
resolveSuccess = t.step_func(function (storage) {
});
resolveError = {
- onerror: t.step_func(function(){
+ onerror: t.step_func(function (){
assert_unreached("Invalid callback invoked: ");
})
};
Authors:
- Piotr Czaja <p.czaja@samsung.com>
- Beata Koziarek <b.koziarek@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_onsuccess_TypeMismatch</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== PRIORITY P2
//==== LABEL Check argument onSuccess conversions exception in resolve method
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
var t = async_test("FileSystemManager_resolve_onsuccess_TypeMismatch"), i,
Authors:
- Piotr Czaja <p.czaja@samsung.com>
- Beata Koziarek <b.koziarek@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_onsuccess_invalid_cb</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== PRIORITY P2
//==== LABEL Check argument onSuccess validation in resolve method onsuccess callback
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTCB
var t = async_test("FileSystemManager_resolve_onsuccess_invalid_cb"),
});
resolveSuccess = {
- onsuccess: t.step_func(function(){
+ onsuccess: t.step_func(function (){
assert_unreached("Invalid callback invoked: ");
})
};
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_ringtones</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== TEST: FileSystemManager_resolve_ringtones
//==== LABEL: Check if resolve ringtones to a file handle.
//==== SPEC: Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var resolveSuccess, resolveError, expected = "ringtones",
t = async_test("FileSystemManager_resolve_ringtones");
-t.step(function(){
+t.step(function (){
resolveSuccess = t.step_func(function (dir) {
assert_equals(dir.path, expected, "resolve ringtones to a file handle");
t.done();
tizen.filesystem.resolve("ringtones", resolveSuccess, resolveError, "r");
});
+
</script>
</body>
</html>
Authors:
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_ringtones_invalid_mode_a</title>
<script type="text/javascript" src="../resources/testharness.js"></script>
//==== LABEL check if InvalidValuesError will be reported when the ringtones directory is resolved with mode a
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
var resolveSuccess, resolveError,
tizen.filesystem.resolve("ringtones", resolveSuccess, resolveError, "a");
});
+
</script>
</body>
</html>
Authors:
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_ringtones_invalid_mode_rw</title>
<script type="text/javascript" src="../resources/testharness.js"></script>
//==== LABEL check if InvalidValuesError will be reported when the rightones directory is resolved with mode rw
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
var resolveSuccess, resolveError,
tizen.filesystem.resolve("ringtones", resolveSuccess, resolveError, "rw");
});
+
</script>
</body>
</html>
Authors:
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_ringtones_invalid_mode_w</title>
<script type="text/javascript" src="../resources/testharness.js"></script>
//==== LABEL check if InvalidValuesError will be reported when the ringtones directory is resolved with mode w
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
var resolveSuccess, resolveError,
tizen.filesystem.resolve("ringtones", resolveSuccess, resolveError, "w");
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_videos</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== LABEL check if resolve videos to a file handle.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var expected = "videos", resolveSuccess, resolveError,
t = async_test("FileSystemManager_resolve_videos");
-t.step(function(){
+t.step(function (){
resolveSuccess = t.step_func(function (dir) {
assert_equals(dir.path ,expected, "resolve videos to a file handle");
t.done();
tizen.filesystem.resolve("videos", resolveSuccess, resolveError, "rw");
});
+
</script>
</body>
</html>
Authors:
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_wgt-package_invalid_mode_a</title>
<script type="text/javascript" src="../resources/testharness.js"></script>
//==== LABEL check if InvalidValuesError will be reported when the wgt-package directory is resolved with mode a
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
var resolveSuccess, resolveError,
tizen.filesystem.resolve("wgt-package", resolveSuccess, resolveError, "a");
});
+
</script>
</body>
</html>
Authors:
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_wgt-package_invalid_mode_rw</title>
<script type="text/javascript" src="../resources/testharness.js"></script>
//==== LABEL check if InvalidValuesError will be reported when the wgt-package directory is resolved with mode rw
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
var resolveSuccess, resolveError,
tizen.filesystem.resolve("wgt-package", resolveSuccess, resolveError, "rw");
});
+
</script>
</body>
</html>
Authors:
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_wgt-package_invalid_mode_w</title>
<script type="text/javascript" src="../resources/testharness.js"></script>
//==== LABEL check if InvalidValuesError will be reported when the wgt-package directory is resolved with mode w
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
var resolveSuccess, resolveError,
tizen.filesystem.resolve("wgt-package", resolveSuccess, resolveError, "w");
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_wgt_package</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== TEST: FileSystemManager_resolve_wgt_package
//==== LABEL: Check if resolve wgt-package to a file handle.
//==== SPEC: Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var resolveSuccess, resolveError, expected = "wgt-package",
t = async_test("FileSystemManager_resolve_wgt_package");
-t.step(function(){
+t.step(function (){
resolveSuccess = t.step_func(function (dir) {
assert_equals(dir.path, expected, "resolve wgt-package to a file handle");
t.done();
tizen.filesystem.resolve("wgt-package", resolveSuccess, resolveError, "r");
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_wgt_private</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== TEST: FileSystemManager_resolve_wgt_private
//==== LABEL: Check if resolve wgt-private to a file handle.
//==== SPEC: Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var resolveSuccess, resolveError, expected = "wgt-private",
t = async_test("FileSystemManager_resolve_wgt_private");
-t.step(function(){
+t.step(function (){
resolveSuccess = t.step_func(function (dir) {
assert_equals(dir.path, expected, "resolve wgt-private to a file handle");
t.done();
tizen.filesystem.resolve("wgt-private", resolveSuccess, resolveError, "rw");
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_wgt_private_tmp</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== TEST: FileSystemManager_resolve_wgt_private_tmp
//==== LABEL: Check if resolve wgt-private-tmp to a file handle.
//==== SPEC: Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var resolveSuccess, resolveError, expected = "wgt-private-tmp",
t = async_test("FileSystemManager_resolve_wgt_private_tmp");
-t.step(function(){
+t.step(function (){
resolveSuccess = t.step_func(function (dir) {
assert_equals(dir.path, expected, "resolve wgt-private-tmp to a file handle");
t.done();
tizen.filesystem.resolve("wgt-private-tmp", resolveSuccess, resolveError, "rw");
});
+
</script>
</body>
</html>
Authors:
- Piotr Czaja <p.czaja@samsung.com>
- Beata Koziarek <b.koziarek@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_with_mode</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== PRIORITY P1
//==== LABEL Check with optional arguments resolve(valid_location, valid_onsuccess, valid_onerror, valid_mode) [METH7]
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var t = async_test("FileSystemManager_resolve_with_mode"),
tizen.filesystem.resolve("images", resolveSuccess, resolveError, "rw");
});
+
</script>
</body>
</html>
Authors:
- Piotr Czaja <p.czaja@samsung.com>
- Beata Koziarek <b.koziarek@samsung.com>
+ Piotr Czaja <p.czaja@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_with_onerror</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== PRIORITY P2
//==== LABEL Check with optional arguments resolve
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var t = async_test("FileSystemManager_resolve_with_onerror"),
resolveSuccess, resolveError;
-t.step(function(){
+t.step(function (){
resolveSuccess = t.step_func(function (storage) {
t.done();
});
tizen.filesystem.resolve("images", resolveSuccess, resolveError);
});
+
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemManager_resolve_works_correctly</title>
//==== TEST: FileSystemManager_resolve_works_correctly
//==== LABEL check whether invoking tizen.filesystem.resolve() method the given location is successfully resolved
//==== SPEC Tizen Web API:IO:Filesystem:FileSystemManager:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#resolveid2589634
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var this_test = async_test("FileSystemManager_resolve_works_correctly"),
test(function () {
check_no_interface_object("FileSystemStorageArraySuccessCallback");
}, "FileSystemStorageArraySuccessCallback_notexist");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemStorageArraySuccessCallback_onsuccess</title>
<script src="../resources/unitcommon.js"></script>
test(function () {
check_no_interface_object("FileSystemStorageSuccessCallback");
}, "FileSystemStorageSuccessCallback_notexist");
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemStorageSuccessCallback_onsuccess</title>
limitations under the License.
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemStorage_extend</title>
<script src="../resources/unitcommon.js"></script>
Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemStorage_label_attribute</title>
<meta charset="utf-8"/>
//==== TEST: FileSystemStorage_label_attribute
//==== LABEL: Check if attribute label of FileSystemStorage exists, has type DOMString and is readonly
//==== SPEC: Tizen Web API:IO:Filesystem:FileSystemStorage:label A
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA AE AT ARO
var t = async_test("FileSystemStorage_label_attribute"), listStoragesSuccess;
test(function () {
check_no_interface_object("FileSystemStorage");
}, "FileSystemStorage_notexist");
+
</script>
</body>
</html>
Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemStorage_state_attribute</title>
<meta charset="utf-8"/>
//==== TEST: FileSystemStorage_state_attribute
//==== LABEL: Check if attribute state of FileSystemStorage exists, has type FileSystemStorageState and is readonly
//==== SPEC: Tizen Web API:IO:Filesystem:FileSystemStorage:state A
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA AE AT ARO
var t = async_test("FileSystemStorage_state_attribute"), listStoragesSuccess, valueToAssign;
Mariusz Polasinski <m.polasisnki@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>FileSystemStorage_type_attribute</title>
<meta charset="utf-8"/>
//==== TEST: FileSystemStorage_type_attribute
//==== LABEL: Check if attribute type of FileSystemStorage exists, has type FileSystemStorageType and is readonly
//==== SPEC: Tizen Web API:IO:Filesystem:FileSystemStorage:type A
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA AE AT ARO
var t = async_test("FileSystemStorage_type_attribute"), listStoragesSuccess, valueToAssign;
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo</title>
//==== TEST: File_copyTo
//==== LABEL: Check if method copyTo of File works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMINA
var t = async_test("File_copyTo"), resolveSuccess, resolveError, fsTestFile, fsTestFileName;
-t.step(function(){
+t.step(function (){
fsTestFileName = getFileName("filesystem.txt");
resolveSuccess = t.step_func(function (dir) {
Authors:
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo_dir_overwrite_false</title>
//==== LABEL check if error callback was invoked when copy a directory to another location of the directory with the same name (overwrite is false).
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
Authors:
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo_dir_overwrite_true</title>
//==== LABEL check if copy a directory to another location of the directory with the same name (overwrite is true) was successfull.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo_dir_samedir_samename_overwrite_false</title>
//==== LABEL check if error callback invoked when copy a directory to the same location with the same name (overwrite is false).
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo_dir_samedir_samename_overwrite_true</title>
//==== LABEL check if error callback invoked when copy a directory to the same location with the same name (overwrite is true).
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo_exist</title>
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
+
</script>
</body>
</html>
Authors:
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo_file_overwrite_false</title>
//==== LABEL check if error callback was invoked when copy a file to another location of the file with the same name (overwrite is false).
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
var t = async_test("File_copyTo_file_overwrite_false"), expected = "IOError",
Authors:
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo_file_overwrite_true</title>
//==== LABEL check if copy a file to another location of the file with the same name (overwrite is true) was successfull.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var t = async_test("File_copyTo_file_overwrite_true"),
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo_file_samedir_samename_overwrite_false</title>
//==== LABEL check if error callback invoked when copy a file to the same location with the same name (overwrite is false).
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo_file_samedir_samename_overwrite_true</title>
//==== LABEL check if error callback invoked when copy a file to the same location with the same name (overwrite is true)
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
var t = async_test("File_copyTo_file_samedir_samename_overwrite_true"), resolveSuccess, copyError,
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
-</html>
\ No newline at end of file
+</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo_onerror_TypeMismatch</title>
<meta charset="utf-8"/>
//==== LABEL: Check argument onError conversions exception in copyTo method.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
var t = async_test("File_copyTo_onerror_TypeMismatch"),
resolveSuccess, resolveError, conversionTable, copyError, i, copySuccess, fsTestFileName,
exceptionName = "TypeMismatchError";
-t.step(function() {
+t.step(function () {
fsTestFileName = getFileName("filesystem.txt");
copySuccess = t.step_func(function () {
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo_onerror_invalid_cb</title>
//==== LABEL: Test whether the constructor of the interface is defined or not in copyTo method onError callback.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTCB
var t = async_test("File_copyTo_onerror_invalid_cb"), resolveSuccess, resolveError,
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo_onsuccess_TypeMismatch</title>
<meta charset="utf-8"/>
//==== LABEL: Check argument onSuccess conversions exception in copyTo method.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
var t = async_test("File_copyTo_onsuccess_TypeMismatch"), copySuccess,
resolveSuccess, resolveError, conversionTable, i, exceptionName = "TypeMismatchError", fsTestFile, fsTestFileName;
-t.step(function(){
+t.step(function (){
fsTestFileName = getFileName("filesystem.txt");
resolveSuccess = t.step_func(function (dir) {
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo_onsuccess_invalid_cb</title>
//==== LABEL: Test whether the constructor of the interface is defined or not in copyTo method onSuccess callback.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTCB
var t = async_test("File_copyTo_onsuccess_invalid_cb"),
resolveSuccess, resolveError, copySuccess, exceptionName = "TypeMismatchError", fsTestFile, fsTestFileName;
-t.step(function(){
+t.step(function (){
fsTestFileName = getFileName("filesystem.txt");
copySuccess = {
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo_with_destination_invalid</title>
//==== LABEL check if throw an exception when copy a file to an invalid destination.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo_with_file_handle</title>
//==== LABEL check if throw an exception when copyTo with file handle.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
var resolveSuccess, resolveError, copySuccess, copyError, fsTestFile, fsTestFileName, fsTestDir, fsTestDirName,
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo_with_invalid_filepath</title>
//==== LABEL check whether invoking 'copyTo' method with invalid filepath param calls error callback function properly
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#copyToid2592536
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
var this_test = async_test("File_copyTo_with_invalid_filepath");
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo_with_invalid_virtual_file</title>
//==== LABEL check whether invoking 'copyTo' method with invalid virtual file path params calls error callback function properly
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#copyToid2592536
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
var t = async_test("File_copyTo_with_invalid_virtual_file"), copyToSuccess, copyToError,
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo_with_null_success_and_error_callbacks</title>
//==== TEST: File_copyTo_with_null_success_and_error_callbacks
//==== LABEL check whether 'copyTo' method properly copies file in case success and error callbacks are undefined
//==== SPEC Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#copyToid2592536
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMINA
var this_test = async_test("File_copyTo_with_null_success_and_error_callbacks");
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo_with_onerror</title>
//==== TEST: File_copyTo_with_onerror
//==== LABEL: Check if method copyTo wit onError optional argument works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var t = async_test("File_copyTo_with_onerror"),
resolveSuccess, resolveError, copyToSuccess, copyToError, fsTestFileName;
-t.step(function(){
+t.step(function (){
fsTestFileName = getFileName("notexistingfile.txt");
copyToError = t.step_func(function () {
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo_with_onsuccess</title>
//==== TEST: File_copyTo_with_onsuccess
//==== LABEL: Check if method copyTo with onSuccess optional argument works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MAST MR
var t = async_test("File_copyTo_with_onsuccess"), resolveSuccess, resolveError, resolveSuccess2, resolveError2,
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo_with_para_invalid</title>
//==== LABEL check if throw an exception when copyTo with invalid parameters.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
-->
-<html lang="en">
+<html>
</head>
<title>File_copyTo_writeFile_newName</title>
//==== TEST: File_copyTo_writeFile_newName
//==== LABEL check if create a new empty file and write content of the file and then copy the file to the same location with different file name
//==== SPEC Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
-->
-<html lang="en">
+<html>
<head>
-<title>File_copyTo_writeFile_overwirte_false</title>
+<title>File_copyTo_writeFile_overwrite_false</title>
<script type="text/javascript" src="../resources/testharness.js"></script>
<script type="text/javascript" src="../resources/testharnessreport.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
//==== TEST: File_copyTo_writeFile_overwrite_false
//==== LABEL check if create a new empty file and write content of the file and then copy the file to another location with same file name (overwrite false)
//==== SPEC Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
-->
-<html lang="en">
+<html>
<head>
<title>File_copyTo_writeFile_subdir</title>
//==== TEST: File_copyTo_writeFile_subdir
//==== LABEL check if create a new empty file and write content of the file and then copy the file to subdirectory with same file name
//==== SPEC Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_createDirectory</title>
//==== TEST: File_createDirectory
//==== LABEL: Check if method createDirectory of File works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:createDirectory M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MAST MMINA MR
var t = async_test("File_createDirectory"),
-->
-<html lang="en">
+<html>
<head>
<title>File_createDirectory_exist</title>
-->
-<html lang="en">
+<html>
<head>
<title>File_createDirectory_level2</title>
//==== LABEL check if create directory of two levels.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:createDirectory M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MAST
var t = async_test("File_createDirectory_level2");
-t.step(function(){
+t.step(function (){
var resolveSuccess, resolveError, listFilesSuccess, listFilesError, documentsDir, fsTestDir,
fsTestDirName, fsTestSubDir, fsTestSubDirName;
t.done();
});
- listFilesError = t.step_func(function(error) {
+ listFilesError = t.step_func(function (error) {
assert_unreached("listFiles() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_createFile</title>
//==== TEST: File_createFile
//==== LABEL: Check if method createFile of File works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:createFile M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MAST MMINA MR
var t = async_test("File_createFile"),
-->
-<html lang="en">
+<html>
<head>
<title>File_createFile_exist</title>
var t = async_test("File_createFile_exist"),
resolveSuccess, resolveError;
-t.step(function(){
+t.step(function (){
resolveSuccess = t.step_func(function (dir) {
assert_true("createFile" in dir, "method createFile is exist");
check_method_exists(dir, "createFile");
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
+
</script>
</body>
</html>
-->
-<html lang="en">
+<html>
<head>
<title>File_createFile_existing_file</title>
-->
-<html lang="en">
+<html>
<head>
<title>File_createFile_with_invalid_name</title>
//==== LABEL check if throw an exception when create file with invalid file name.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:createFile M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
var t = async_test("File_createFile_with_invalid_name"),
expected = "InvalidValuesError", documentsDir,
resolveSuccess, resolveError;
-t.step(function() {
- resolveSuccess = t.step_func(function(dir) {
+t.step(function () {
+ resolveSuccess = t.step_func(function (dir) {
documentsDir = dir;
- assert_throws({name: expected}, function() {
+ assert_throws({name: expected}, function () {
dir.createFile("..//test.doc");
}, expected + " should be thrown");
t.done();
});
- resolveError = t.step_func(function(error) {
+ resolveError = t.step_func(function (error) {
assert_unreached("resolve() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_created_attribute</title>
//==== TEST: File_created_attribute
//==== LABEL: Check if attribute created of File exists, has type Date and is readonly
//==== SPEC: Tizen Web API:IO:Filesystem:File:created A
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA AE AT ARO
var t = async_test("File_created_attribute"),
resolveSuccess, resolveError, fsTestFileName, fsTestFile, date, tmp;
-t.step(function(){
+t.step(function (){
fsTestFileName = getFileName("filesystem.txt");
resolveSuccess = t.step_func(function (dir) {
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_deleteDirectory</title>
<meta charset="utf-8"/>
//==== TEST: File_deleteDirectory
//==== LABEL: Check if method deleteDirectory of File works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:deleteDirectory M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMINA
var t = async_test("File_deleteDirectory");
-t.step(function(){
+t.step(function (){
var resolveSuccess, resolveError, fsTestDirName, fsTestDir;
fsTestDirName = getDirName("filesystem");
-->
-<html lang="en">
+<html>
<head>
<title>File_deleteDirectory_createDir_documents</title>
//==== TEST: File_deleteDirectory_createDir_documents
//==== LABEL check if create a new directory in documents and then delete the directory
//==== SPEC Tizen Web API:IO:Filesystem:File:deleteDirectory M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var fsTestDirName, fsTestDir, resolveSuccess, resolveError, deleteSuccess, deleteError, documentsDir,
t = async_test("File_deleteDirectory_createDir_documents");
-t.step(function(){
+t.step(function (){
fsTestDirName = getDirName("filesystem");
- deleteSuccess = t.step_func(function() {
+ deleteSuccess = t.step_func(function () {
assert_throws({name: "NotFoundError"}, function () {
documentsDir.resolve(fsTestDirName);
}, "directory wasn't deleted properly");
t.done();
});
- deleteError = t.step_func(function(error) {
+ deleteError = t.step_func(function (error) {
assert_unreached("deleteDirectory() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- resolveSuccess = t.step_func(function(dir) {
+ resolveSuccess = t.step_func(function (dir) {
documentsDir = dir;
fsTestDir = dir.createDirectory(fsTestDirName);
dir.deleteDirectory(fsTestDir.fullPath, true, deleteSuccess, deleteError);
});
- resolveError = t.step_func(function(error) {
+ resolveError = t.step_func(function (error) {
assert_unreached("resolve() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
});
-</script>
+</script>
</body>
</html>
-->
-<html lang="en">
+<html>
<head>
<title>File_deleteDirectory_createDir_downloads</title>
//==== TEST: File_deleteDirectory_createDir_downloads
//==== LABEL check if create a new directory in downloads and then delete the directory
//==== SPEC Tizen Web API:IO:Filesystem:File:deleteDirectory M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var fsTestDirName, fsTestDir, resolveSuccess, resolveError, deleteSuccess, deleteError, downloadsDir,
t = async_test("File_deleteDirectory_createDir_downloads");
-t.step(function(){
+t.step(function (){
fsTestDirName = getDirName("filesystem");
- deleteSuccess = t.step_func(function() {
+ deleteSuccess = t.step_func(function () {
assert_throws({name: "NotFoundError"}, function () {
downloadsDir.resolve(fsTestDirName);
}, "directory wasn't deleted properly");
t.done();
});
- deleteError = t.step_func(function(error) {
+ deleteError = t.step_func(function (error) {
assert_unreached("deleteDirectory() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- resolveSuccess = t.step_func(function(dir) {
+ resolveSuccess = t.step_func(function (dir) {
downloadsDir = dir;
fsTestDir = dir.createDirectory(fsTestDirName);
dir.deleteDirectory(fsTestDir.fullPath, true, deleteSuccess, deleteError);
});
- resolveError = t.step_func(function(error) {
+ resolveError = t.step_func(function (error) {
assert_unreached("resolve() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
-->
-<html lang="en">
+<html>
<head>
<title>File_deleteDirectory_createDir_images</title>
//==== LABEL check if create a new directory in images and then delete the directory
//==== PRIORITY P1
//==== SPEC Tizen Web API:IO:Filesystem:File:deleteDirectory M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var fsTestDirName, fsTestDir, resolveSuccess, resolveError, deleteSuccess, deleteError, imagesDir,
t = async_test("File_deleteDirectory_createDir_images");
-t.step(function(){
+t.step(function (){
fsTestDirName = getDirName("filesystem");
- deleteSuccess = t.step_func(function() {
+ deleteSuccess = t.step_func(function () {
assert_throws({name: "NotFoundError"}, function () {
imagesDir.resolve(fsTestDirName);
}, "directory wasn't deleted properly");
t.done();
});
- deleteError = t.step_func(function(error) {
+ deleteError = t.step_func(function (error) {
assert_unreached("deleteDirectory() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- resolveSuccess = t.step_func(function(dir) {
+ resolveSuccess = t.step_func(function (dir) {
imagesDir = dir;
fsTestDir = dir.createDirectory(fsTestDirName);
dir.deleteDirectory(fsTestDir.fullPath, true, deleteSuccess, deleteError);
});
- resolveError = t.step_func(function(error) {
+ resolveError = t.step_func(function (error) {
assert_unreached("resolve() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
});
</script>
-
</body>
</html>
-->
-<html lang="en">
+<html>
<head>
<title>File_deleteDirectory_createDir_music</title>
<script type="text/javascript" src="../resources/testharness.js"></script>
//==== LABEL check if create a new directory in music and then delete the directory
//==== PRIORITY P1
//==== SPEC Tizen Web API:IO:Filesystem:File:deleteDirectory M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var fsTestDirName, fsTestDir, resolveSuccess, resolveError, deleteSuccess, deleteError, musicDir,
t = async_test("File_deleteDirectory_createDir_music");
-t.step(function(){
+t.step(function (){
fsTestDirName = getDirName("filesystem");
- deleteSuccess = t.step_func(function() {
+ deleteSuccess = t.step_func(function () {
assert_throws({name: "NotFoundError"}, function () {
musicDir.resolve(fsTestDirName);
}, "directory wasn't deleted properly");
t.done();
});
- deleteError = t.step_func(function(error) {
+ deleteError = t.step_func(function (error) {
assert_unreached("deleteDirectory() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- resolveSuccess = t.step_func(function(dir) {
+ resolveSuccess = t.step_func(function (dir) {
musicDir = dir;
fsTestDir = dir.createDirectory(fsTestDirName);
dir.deleteDirectory(fsTestDir.fullPath, true, deleteSuccess, deleteError);
});
- resolveError = t.step_func(function(error) {
+ resolveError = t.step_func(function (error) {
assert_unreached("resolve() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
});
</script>
-
</body>
</html>
-->
-<html lang="en">
+<html>
<head>
<title>File_deleteDirectory_createDir_videos</title>
//==== LABEL check if create a new directory in videos and then delete the directory
//==== PRIORITY P1
//==== SPEC Tizen Web API:IO:Filesystem:File:deleteDirectory M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var fsTestDirName, fsTestDir, resolveSuccess, resolveError, deleteSuccess, deleteError, videosDir,
t = async_test("File_deleteDirectory_createDir_videos");
-t.step(function(){
+t.step(function (){
fsTestDirName = getDirName("filesystem");
- deleteSuccess = t.step_func(function() {
+ deleteSuccess = t.step_func(function () {
assert_throws({name: "NotFoundError"}, function () {
videosDir.resolve(fsTestDirName);
}, "directory wasn't deleted properly");
t.done();
});
- deleteError = t.step_func(function(error) {
+ deleteError = t.step_func(function (error) {
assert_unreached("deleteDirectory() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- resolveSuccess = t.step_func(function(dir) {
+ resolveSuccess = t.step_func(function (dir) {
videosDir = dir;
fsTestDir = dir.createDirectory(fsTestDirName);
dir.deleteDirectory(fsTestDir.fullPath, true, deleteSuccess, deleteError);
});
- resolveError = t.step_func(function(error) {
+ resolveError = t.step_func(function (error) {
assert_unreached("resolve() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
tizen.filesystem.resolve("videos", resolveSuccess, resolveError, "rw");
});
});
-</script>
+</script>
</body>
</html>
-->
-<html lang="en">
+<html>
<head>
<title>File_deleteDirectory_exist</title>
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
-</script>
+</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_deleteDirectory_onerror_TypeMismatch</title>
<meta charset="utf-8"/>
//==== LABEL: Check argument onError conversions exception in deleteDirectory method.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:deleteDirectory M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
var t = async_test("File_deleteDirectory_onerror_TypeMismatch"),
resolveSuccess, resolveError, conversionTable, deleteError, i, deleteSuccess, fsTestDirName, fsTestDir,
exceptionName = "TypeMismatchError";
-t.step(function() {
+t.step(function () {
fsTestDirName = getDirName("filesystem");
deleteSuccess = t.step_func(function () {
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_deleteDirectory_onerror_invalid_cb</title>
<meta charset="utf-8"/>
//==== LABEL: Test whether the constructor of the interface is defined or not in deleteDirectory method onError callback.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:deleteDirectory M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTCB
var t = async_test("File_deleteDirectory_onerror_invalid_cb"),
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_deleteDirectory_onsuccess_TypeMismatch</title>
//==== LABEL: Check argument onSuccess conversions exception in deleteDirectory method.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:deleteDirectory M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
var t = async_test("File_deleteDirectory_onsuccess_TypeMismatch"), deleteSuccess,
resolveSuccess, resolveError, conversionTable, i, exceptionName = "TypeMismatchError", fsTestDirName, fsTestDir;
-t.step(function(){
+t.step(function (){
fsTestDirName = getDirName("filesystem");
resolveSuccess = t.step_func(function (dir) {
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_deleteDirectory_onsuccess_invalid_cb</title>
//==== LABEL: Test whether the constructor of the interface is defined or not in deleteDirectory method onSuccess callback.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:deleteDirectory M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTCB
var t = async_test("File_deleteDirectory_onsuccess_invalid_cb"),
resolveSuccess, resolveError, deleteSuccess, exceptionName = "TypeMismatchError", fsTestDirName, fsTestDir;
-t.step(function(){
+t.step(function (){
fsTestDirName = getDirName("filesystem");
deleteSuccess = {
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_deleteDirectory_with_empty_path</title>
//==== TEST: File_deleteDirectory_with_empty_path
//==== LABEL check whether invoking 'deleteDirectory' method with improper virtual path to the directory argument throws exception properly
//==== SPEC Tizen Web API:IO:Filesystem:File:deleteDirectory M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#deleteDirectoryid2593534
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
var t = async_test("File_deleteDirectory_with_empty_path");
-->
-<html lang="en">
+<html>
<head>
<title>File_deleteDirectory_with_file_handle</title>
//==== LABEL check if throw an exception when delete a dir with file handle.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:deleteDirectory M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
var resolveSuccess, resolveError, deleteSuccess, deleteError, fsTestFileName, fsTestFile, documentsDir,
expected = "InvalidValuesError", t = async_test("File_deleteDirectory_with_file_handle");
-t.step(function(){
+t.step(function (){
fsTestFileName = getFileName("filesystem.txt");
deleteSuccess = t.step_func(function () {
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title>File_deleteDirectory_with_all_arguments</title>
+<title>File_deleteDirectory_with_null_callbacks</title>
<meta charset="utf-8">
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
//==== TEST: File_deleteDirectory_with_null_callbacks
//==== LABEL check whether 'deleteDirectory' method properly removes a specified directory
//==== SPEC Tizen Web API:IO:Filesystem:File:deleteDirectory M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#deleteDirectoryid2593534
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMINA
var this_test = async_test("File_deleteDirectory_with_null_callbacks");
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_deleteDirectory_with_onerror</title>
//==== TEST: File_deleteDirectory_with_onerror
//==== LABEL: Check if method deleteDirectory wit onError optional argument works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:deleteDirectory M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
var resolveSuccess, resolveError, deleteDirectorySuccess, deleteDirectoryError, fsTestDirName,
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_deleteDirectory_with_onsuccess</title>
//==== TEST: File_deleteDirectory_with_onsuccess
//==== LABEL: Check if method deleteDirectory wit onSuccess optional argument works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:deleteDirectory M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MAST MR
var t = async_test("File_deleteDirectory_with_onsuccess"), retVal = null,
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
<html>
<head>
-<title> File_deleteFile </title>
+<title>File_deleteFile</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_deleteFile
//==== LABEL: Check if method deleteFile of File works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:deleteFile M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MAST MR
var t = async_test("File_deleteFile"), fsTestFileName, fsTestFile, i, retVal = null,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
<html>
<head>
-<title> File_deleteFile_copyFile_downloads </title>
+<title>File_deleteFile_copyFile_downloads</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_deleteFile_copyFile_downloads
//==== LABEL check if create a new file in downloads and copy the file to another location and then delete the file
//==== SPEC Tizen Web API:IO:Filesystem:File:deleteFile M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
<html>
<head>
-<title> File_deleteFile_copyFile_images </title>
+<title>File_deleteFile_copyFile_images</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_deleteFile_copyFile_images
//==== LABEL check if create a new file in images and copy the file to another location and then delete the file
//==== SPEC Tizen Web API:IO:Filesystem:File:deleteFile M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
tizen.filesystem.resolve("images", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
<html>
<head>
-<title> File_deleteFile_copyFile_music </title>
+<title>File_deleteFile_copyFile_music</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_deleteFile_copyFile_music
//==== LABEL check if create a new file in music and copy the file to another location and then delete the file
//==== SPEC Tizen Web API:IO:Filesystem:File:deleteFile M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
tizen.filesystem.resolve("music", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
<html>
<head>
-<title> File_deleteFile_copyFile_videos </title>
+<title>File_deleteFile_copyFile_videos</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_deleteFile_copyFile_videos
//==== LABEL check if create a new file in videos and copy the file to another location and then delete the file
//==== SPEC Tizen Web API:IO:Filesystem:File:deleteFile M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
tizen.filesystem.resolve("videos", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
<html>
<head>
-<title> File_deleteFile_createFile </title>
+<title>File_deleteFile_createFile</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_deleteFile_createFile
//==== LABEL check if create a new file and then delete the file
//==== SPEC Tizen Web API:IO:Filesystem:File:deleteFile M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
- Beata Koziarek <b.koziarek@samsung.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
<html>
<head>
-<title> File_deleteFile_exist </title>
+<title>File_deleteFile_exist</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
var t = async_test("File_deleteFile_exist"),
resolveSuccess, resolveError;
-t.step(function(){
+t.step(function (){
resolveSuccess = t.step_func(function (dir) {
assert_true("deleteFile" in dir, "method deleteFile is exist");
check_method_exists(dir, "deleteFile");
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
<html>
<head>
-<title> File_deleteFile_listDocumentsFiles </title>
+<title>File_deleteFile_listDocumentsFiles</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_deleteFile_listDocumentsFiles
//==== LABEL check if delete the list of all files in documents
//==== SPEC Tizen Web API:IO:Filesystem:File:deleteFile M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
fsTestDirName2 = getFileName("inside");
fsTestFileName = getFileName("filesystem.txt");
- deleteFileSuccess = t.step_func(function() {
+ deleteFileSuccess = t.step_func(function () {
t.done();
});
- deleteFileError = t.step_func(function(error) {
+ deleteFileError = t.step_func(function (error) {
assert_unreached("deleteFile() error callback invoked: name:" + error.name + "msg:" + error.message);
});
- deleteDirSuccess = t.step_func(function() {
+ deleteDirSuccess = t.step_func(function () {
fsTestDir1.deleteFile(fsTestFile.fullPath, deleteFileSuccess, deleteFileError);
});
- deleteDirError = t.step_func(function(error) {
+ deleteDirError = t.step_func(function (error) {
assert_unreached("deleteDir() error callback invoked: name:" + error.name + "msg:" + error.message);
});
- listFilesSuccess = t.step_func(function(files) {
+ listFilesSuccess = t.step_func(function (files) {
assert_true(files.length > 0,"Files not found");
fsTestDir1.deleteDirectory(fsTestDir2.fullPath,true, deleteDirSuccess, deleteDirError);
});
- listFilesError = t.step_func(function(error) {
+ listFilesError = t.step_func(function (error) {
assert_unreached("listFiles() error callback invoked: name:" + error.name + "msg:" + error.message);
});
- resolveSuccess = t.step_func(function(dir) {
+ resolveSuccess = t.step_func(function (dir) {
documentsDir = dir;
fsTestDir1 = dir.createDirectory(fsTestDirName1);
fsTestFile = fsTestDir1.createFile(fsTestFileName);
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
<html>
<head>
-<title> File_deleteFile_listDownloadsFiles </title>
+<title>File_deleteFile_listDownloadsFiles</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_deleteFile_listDownloadsFiles
//==== LABEL check if delete the list of all files in downloads
//==== SPEC Tizen Web API:IO:Filesystem:File:deleteFile M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
fsTestDirName2 = getFileName("inside");
fsTestFileName = getFileName("filesystem.txt");
- deleteFileSuccess = t.step_func(function() {
+ deleteFileSuccess = t.step_func(function () {
t.done();
});
- deleteFileError = t.step_func(function(error) {
+ deleteFileError = t.step_func(function (error) {
assert_unreached("deleteFile() error callback invoked: name:" + error.name + "msg:" + error.message);
});
- deleteDirSuccess = t.step_func(function() {
+ deleteDirSuccess = t.step_func(function () {
fsTestDir1.deleteFile(fsTestFile.fullPath, deleteFileSuccess, deleteFileError);
});
- deleteDirError = t.step_func(function(error) {
+ deleteDirError = t.step_func(function (error) {
assert_unreached("deleteDir() error callback invoked: name:" + error.name + "msg:" + error.message);
});
- listFilesSuccess = t.step_func(function(files) {
+ listFilesSuccess = t.step_func(function (files) {
assert_true(files.length > 0,"Files not found");
fsTestDir1.deleteDirectory(fsTestDir2.fullPath,true, deleteDirSuccess, deleteDirError);
});
- listFilesError = t.step_func(function(error) {
+ listFilesError = t.step_func(function (error) {
assert_unreached("listFiles() error callback invoked: name:" + error.name + "msg:" + error.message);
});
- resolveSuccess = t.step_func(function(dir) {
+ resolveSuccess = t.step_func(function (dir) {
documentsDir = dir;
fsTestDir1 = dir.createDirectory(fsTestDirName1);
fsTestFile = fsTestDir1.createFile(fsTestFileName);
tizen.filesystem.resolve("downloads", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
<html>
<head>
-<title> File_deleteFile_listImagsFiles </title>
+<title>File_deleteFile_listImagsFiles</title>
<meta charset="utf-8" />
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
//==== TEST: File_deleteFile_listImagsFiles
//==== LABEL check if delete the list of all files in images
//==== SPEC Tizen Web API:IO:Filesystem:File:deleteFile M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
fsTestDirName2 = getDirName("inside");
fsTestFileName = getFileName("filesystem.txt");
- deleteFileSuccess = t.step_func(function() {
+ deleteFileSuccess = t.step_func(function () {
t.done();
});
- deleteFileError = t.step_func(function(error) {
+ deleteFileError = t.step_func(function (error) {
assert_unreached("deleteFile() error callback invoked: name:" + error.name + "msg:" + error.message);
});
- deleteDirSuccess = t.step_func(function() {
+ deleteDirSuccess = t.step_func(function () {
fsTestDir1.deleteFile(fsTestFile.fullPath, deleteFileSuccess, deleteFileError);
});
- deleteDirError = t.step_func(function(error) {
+ deleteDirError = t.step_func(function (error) {
assert_unreached("deleteDir() error callback invoked: name:" + error.name + "msg:" + error.message);
});
- listFilesSuccess = t.step_func(function(files) {
+ listFilesSuccess = t.step_func(function (files) {
assert_true(files.length > 0,"Files not found");
fsTestDir1.deleteDirectory(fsTestDir2.fullPath,true, deleteDirSuccess, deleteDirError);
});
- listFilesError = t.step_func(function(error) {
+ listFilesError = t.step_func(function (error) {
assert_unreached("listFiles() error callback invoked: name:" + error.name + "msg:" + error.message);
});
- resolveSuccess = t.step_func(function(dir) {
+ resolveSuccess = t.step_func(function (dir) {
documentsDir = dir;
fsTestDir1 = dir.createDirectory(fsTestDirName1);
fsTestFile = fsTestDir1.createFile(fsTestFileName);
tizen.filesystem.resolve("images", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
<html>
<head>
-<title> File_deleteFile_listMusicFiles </title>
+<title>File_deleteFile_listMusicFiles</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_deleteFile_listMusicFiles
//==== LABEL check if delete the list of all files in music
//==== SPEC Tizen Web API:IO:Filesystem:File:deleteFile M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
fsTestDirName2 = getFileName("inside");
fsTestFileName = getFileName("filesystem.txt");
- deleteFileSuccess = t.step_func(function() {
+ deleteFileSuccess = t.step_func(function () {
t.done();
});
- deleteFileError = t.step_func(function(error) {
+ deleteFileError = t.step_func(function (error) {
assert_unreached("deleteFile() error callback invoked: name:" + error.name + "msg:" + error.message);
});
- deleteDirSuccess = t.step_func(function() {
+ deleteDirSuccess = t.step_func(function () {
fsTestDir1.deleteFile(fsTestFile.fullPath, deleteFileSuccess, deleteFileError);
});
- deleteDirError = t.step_func(function(error) {
+ deleteDirError = t.step_func(function (error) {
assert_unreached("deleteDir() error callback invoked: name:" + error.name + "msg:" + error.message);
});
- listFilesSuccess = t.step_func(function(files) {
+ listFilesSuccess = t.step_func(function (files) {
assert_true(files.length > 0,"Files not found");
fsTestDir1.deleteDirectory(fsTestDir2.fullPath,true, deleteDirSuccess, deleteDirError);
});
- listFilesError = t.step_func(function(error) {
+ listFilesError = t.step_func(function (error) {
assert_unreached("listFiles() error callback invoked: name:" + error.name + "msg:" + error.message);
});
- resolveSuccess = t.step_func(function(dir) {
+ resolveSuccess = t.step_func(function (dir) {
documentsDir = dir;
fsTestDir1 = dir.createDirectory(fsTestDirName1);
fsTestFile = fsTestDir1.createFile(fsTestFileName);
tizen.filesystem.resolve("music", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
<html>
<head>
-<title> File_deleteFile_listVideosfiles </title>
+<title>File_deleteFile_listVideosfiles</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_deleteFile_listVideosfiles
//==== LABEL check if delete the list of all files in videos
//==== SPEC Tizen Web API:IO:Filesystem:File:deleteFile M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
fsTestDirName2 = getFileName("inside");
fsTestFileName = getFileName("filesystem.txt");
- deleteFileSuccess = t.step_func(function() {
+ deleteFileSuccess = t.step_func(function () {
t.done();
});
- deleteFileError = t.step_func(function(error) {
+ deleteFileError = t.step_func(function (error) {
assert_unreached("deleteFile() error callback invoked: name:" + error.name + "msg:" + error.message);
});
- deleteDirSuccess = t.step_func(function() {
+ deleteDirSuccess = t.step_func(function () {
fsTestDir1.deleteFile(fsTestFile.fullPath, deleteFileSuccess, deleteFileError);
});
- deleteDirError = t.step_func(function(error) {
+ deleteDirError = t.step_func(function (error) {
assert_unreached("deleteDir() error callback invoked: name:" + error.name + "msg:" + error.message);
});
- listFilesSuccess = t.step_func(function(files) {
+ listFilesSuccess = t.step_func(function (files) {
assert_true(files.length > 0,"Files not found");
fsTestDir1.deleteDirectory(fsTestDir2.fullPath,true, deleteDirSuccess, deleteDirError);
});
- listFilesError = t.step_func(function(error) {
+ listFilesError = t.step_func(function (error) {
assert_unreached("listFiles() error callback invoked: name:" + error.name + "msg:" + error.message);
});
- resolveSuccess = t.step_func(function(dir) {
+ resolveSuccess = t.step_func(function (dir) {
documentsDir = dir;
fsTestDir1 = dir.createDirectory(fsTestDirName1);
fsTestFile = fsTestDir1.createFile(fsTestFileName);
tizen.filesystem.resolve("videos", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
<html>
<head>
-<title> File_deleteFile_onerror_TypeMismatch </title>
+<title>File_deleteFile_onerror_TypeMismatch</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL: Check argument onError conversions exception in deleteFile method.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:deleteFile M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
var t = async_test("File_deleteFile_onerror_TypeMismatch"),
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title> File_deleteFile_onerror_invalid_cb </title>
+<title>File_deleteFile_onerror_invalid_cb</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL: Test whether the constructor of the interface is defined or not in deleteFile method onError callback.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:deleteFile M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTCB
var t = async_test("File_deleteFile_onerror_invalid_cb"), fsTestFileName, fsTestFile,
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
<html>
<head>
-<title> File_deleteFile_onsuccess_TypeMismatch </title>
+<title>File_deleteFile_onsuccess_TypeMismatch</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL: Check argument onsuccess conversions exception in deleteFile method.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:deleteFile M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
var t = async_test("File_deleteFile_onsuccess_TypeMismatch"), deleteFileSuccess, fsTestFileName,
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
<html>
<head>
-<title> File_deleteFile_onsuccess_invalid_cb </title>
+<title>File_deleteFile_onsuccess_invalid_cb</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL: Test whether the constructor of the interface is defined or not in deleteFile method onSuccess callback.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:deleteFile M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTCB
var t = async_test("File_deleteFile_onsuccess_invalid_cb"), fsTestFileName, fsTestFile,
-->
-<html lang="en">
+<html>
<head>
<title>File_deleteFile_with_dir_handle</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== LABEL check if throw an exception when delete a file with dir handle.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:deleteFile M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title> File_deleteFile_with_nonexist </title>
+<title>File_deleteFile_with_nonexist</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL check if throw an exception when delete a file which not exist.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:deleteFile M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
});
});
+
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title> File_deleteFile_with_onerror </title>
+<title>File_deleteFile_with_onerror</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_deleteFile_with_onerror
//==== LABEL: Check if method deleteFile wit onError optional argument works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:deleteFile M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
var t = async_test("File_deleteFile_with_onerror"),
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
<html>
<head>
-<title> File_deleteFile_with_onsuccess </title>
+<title>File_deleteFile_with_onsuccess</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_deleteFile_with_onsuccess
//==== LABEL: Check if method deleteFile with onSuccess optional argument works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:deleteFile M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var t = async_test("File_deleteFile_with_onsuccess"), fsTestFileName, fsTestFile,
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
<html>
<head>
-<title> File_deleteFile_with_vaild_callbacks </title>
+<title>File_deleteFile_with_vaild_callbacks</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_deleteFile_with_vaild_callbacks
//==== LABEL check whether 'deleteFile' method properly removes a specified file
//==== SPEC Tizen Web API:IO:Filesystem:File:deleteFile M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#deleteFileid2593782
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var this_test = async_test("File_deleteFile_with_vaild_callbacks"),
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
<html>
<head>
-<title> File_deleteFile_with_valid_filePath </title>
+<title>File_deleteFile_with_valid_filePath</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_deleteFile_with_valid_filePath
//==== LABEL check whether 'deleteFile' method works properly removing a specified file
//==== SPEC Tizen Web API:IO:Filesystem:File:deleteFile M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#deleteFileid2593782
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMINA
var this_test = async_test("File_deleteFile_with_valid_filePath"), fsTestFileName, fsTestFile,
limitations under the License.
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
<html>
<head>
-<title> File_extend </title>
+<title>File_extend</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
+
</script>
</body>
</html>
Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title> File_fileSize_attribute </title>
+<title>File_fileSize_attribute</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_fileSize_attribute
//==== LABEL: Check if attribute fileSize of File exists, has type Number and is readonly
//==== SPEC: Tizen Web API:IO:Filesystem:File:fileSize A
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA AE AT ARO
var t = async_test("File_fileSize_attribute"), fsTestFileName, fsTestFile,
Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title> File_fullPath_attribute </title>
+<title>File_fullPath_attribute</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_fullPath_attribute
//==== LABEL: Check if attribute fullPath of File exists, has type DOMString and is readonly
//==== SPEC: Tizen Web API:IO:Filesystem:File:fullPath A
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA AE AT ARO
var t = async_test("File_fullPath_attribute"), fsTestFileName, fsTestFile,
-->
<html>
<head>
-<title> File_isDirectory_attribute </title>
+<title>File_isDirectory_attribute</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_isDirectory_attribute
//==== LABEL: Check if attribute isDirectory of File exists, has type Boolean and is readonly
//==== SPEC: Tizen Web API:IO:Filesystem:File:isDirectory A
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA AE AT ARO
var t = async_test("File_isDirectory_attribute"),
-->
<html>
<head>
-<title> File_moveTo </title>
+<title>File_isFile_attribute</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_isFile_attribute
//==== LABEL: Check if attribute isFile of File exists, has type Boolean and is readonly
//==== SPEC: Tizen Web API:IO:Filesystem:File:isFile A
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA AE AT ARO
var t = async_test("File_isFile_attribute"),
-->
<html>
<head>
-<title> File_length_attribute </title>
+<title>File_length_attribute</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_length_attribute
//==== LABEL: Check if attribute length of File exists, has type Number and is readonly
//==== SPEC: Tizen Web API:IO:Filesystem:File:length A
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA AE AT ARO
var t = async_test("File_length_attribute"), fsTestFileName = getFileName("filesystem.txt"),
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_listFiles</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== TEST: File_listFiles
//==== LABEL: Check if method listFiles of File works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:listFiles M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMINA MR
var t = async_test("File_listFiles"),
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_listFiles_createFiles</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== TEST: File_listFiles_createFiles
//==== LABEL check if create a new directory and then list all files in this directory
//==== SPEC Tizen Web API:IO:Filesystem:File:listFiles M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
- Beata Koziarek <b.koziarek@samsung.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_listFiles_exist</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
+
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_listFiles_filter_TypeMismatch</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== LABEL: Check argument filter conversions exception.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:listFiles M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
var t = async_test("File_listFiles_filter_TypeMismatch"), listFilesSuccess,
resolveSuccess, resolveError, conversionTable, i, exceptionName = "TypeMismatchError",
filter;
-t.step(function() {
- listFilesSuccess = t.step_func(function() {});
- resolveSuccess = t.step_func(function(dir) {
+t.step(function () {
+ listFilesSuccess = t.step_func(function () {});
+ resolveSuccess = t.step_func(function (dir) {
conversionTable = getTypeConversionExceptions("object", true);
for (i = 0; i < conversionTable.length; i++) {
filter = conversionTable[i][0];
assert_throws({
name: exceptionName
- }, function() {
+ }, function () {
dir.listFiles(listFilesSuccess, null, filter);
}, exceptionName + " should be thrown - given incorrect filter.");
}
t.done();
});
- resolveError = t.step_func(function(error) {
+ resolveError = t.step_func(function (error) {
assert_unreached("resolve() error callback invoked: name:" + error.name + "msg:" + error.message);
});
Authors:
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_listFiles_filter_empty</title>
<meta charset="utf-8"/>
//==== LABEL check with empty FileFilter argument of listFiles
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:listFiles M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTD
var t = async_test("File_listFiles_filter_empty"), resolveSuccess, resolveError,
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
+
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_listFiles_missarg</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== PRIORITY: P2
//==== LABEL: Check if listFiles of File with missing non-optional argument works
//==== SPEC: Tizen Web API:IO:Filesystem:File:listFiles M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMA
var t = async_test("File_listFiles_missarg"), resolveSuccess, resolveError;
-t.step(function() {
- resolveSuccess = t.step_func(function(dir) {
+t.step(function () {
+ resolveSuccess = t.step_func(function (dir) {
assert_throws({
name: "TypeMismatchError"
- }, function() {
+ }, function () {
dir.listFiles();
});
t.done();
});
- resolveError = t.step_func(function(error) {
+ resolveError = t.step_func(function (error) {
assert_unreached("resolve() error callback invoked: name:" + error.name + "msg:" + error.message);
});
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title> File_listFiles_onerror_TypeMismatch </title>
+<title>File_listFiles_onerror_TypeMismatch</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL: Check argument onError conversions exception in listFiles method.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:listFiles M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
var t = async_test("File_listFiles_onerror_TypeMismatch"),
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title> File_listFiles_onerror_invalid_cb </title>
+<title>File_listFiles_onerror_invalid_cb</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL: Test whether the constructor of the interface is defined or not in listFiles method onError callback.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:listFiles M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTCB
var t = async_test("File_listFiles_onerror_invalid_cb"), fsTestFileName, fsTestFile,
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
<html>
<head>
-<title> File_listFiles_onsuccess_TypeMismatch </title>
+<title>File_listFiles_onsuccess_TypeMismatch</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL: Check argument onSuccess conversions exception in listFiles method.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:listFiles M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
var t = async_test("File_listFiles_onsuccess_TypeMismatch"), listFilesSuccess,
resolveSuccess, resolveError, conversionTable, i, exceptionName = "TypeMismatchError";
-t.step(function() {
- resolveSuccess = t.step_func(function(dir) {
+t.step(function () {
+ resolveSuccess = t.step_func(function (dir) {
conversionTable = getTypeConversionExceptions("functionObject", false);
for (i = 0; i < conversionTable.length; i++) {
listFilesSuccess = conversionTable[i][0];
assert_throws({
name: exceptionName
- }, function() {
+ }, function () {
dir.listFiles(listFilesSuccess);
}, exceptionName + " should be thrown - given incorrect successCallback.");
}
t.done();
});
- resolveError = t.step_func(function(error) {
+ resolveError = t.step_func(function (error) {
assert_unreached("resolve() error callback invoked: name:" + error.name + "msg:" + error.message);
});
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
<html>
<head>
-<title> File_listFiles_onsuccess_invalid_cb </title>
+<title>File_listFiles_onsuccess_invalid_cb</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL: Test whether the constructor of the interface is defined or not in listFiles method onSuccess callback.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:listFiles M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTCB
var t = async_test("File_listFiles_onsuccess_invalid_cb"),
resolveSuccess, resolveError, listFilesSuccess, exceptionName = "TypeMismatchError";
-t.step(function() {
+t.step(function () {
listFilesSuccess = {
- onsuccess: t.step_func(function() {
+ onsuccess: t.step_func(function () {
assert_unreached("Invalid callback invoked: ");
})
};
- resolveSuccess = t.step_func(function(dir) {
+ resolveSuccess = t.step_func(function (dir) {
assert_throws({
name: exceptionName
- }, function() {
+ }, function () {
dir.listFiles(listFilesSuccess);
}, exceptionName + " should be thrown - given incorrect successCallback.");
t.done();
});
- resolveError = t.step_func(function(error) {
+ resolveError = t.step_func(function (error) {
assert_unreached("resolve() error callback invoked: name:" + error.name + "msg:" + error.message);
});
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
-<html lang="en">
+<html>
<head>
-<title> File_listFiles_with_file_handle </title>
+<title>File_listFiles_with_file_handle</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL check if throw an exception when listFiles with a file handle.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:listFiles M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_listFiles_with_filter</title>
<meta charset="utf-8" />
//==== LABEL check if list files in documents directory with filter.
//==== PRIORITY P1
//==== SPEC Tizen Web API:IO:Filesystem:File:listFiles M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
<html>
<head>
-<title> File_listFiles_with_onerror </title>
+<title>File_listFiles_with_onerror</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_listFiles_with_onerror
//==== LABEL: Check if method listFiles wit onError optional argument works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:listFiles M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
var t = async_test("File_listFiles_with_onerror"),
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
<html>
<head>
-<title> File_moveTo_with_path_invalid </title>
+<title>File_listFiles_with_valid_successCallback</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_listFiles_with_valid_successCallback
//==== LABEL check whether 'listFiles' method properly retrieves the list of files in directory
//==== SPEC Tizen Web API:IO:Filesystem:File:listFiles M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#listFilesid2591852
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMINA
var this_test = async_test("File_listFiles_with_valid_successCallback"), resolveSuccess, resolveError,
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title> File_moveTo_with_path_invalid </title>
+<title>File_modified_attribute</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_modified_attribute
//==== LABEL: Check if attribute modified of File exists, has type Date and is readonly
//==== SPEC: Tizen Web API:IO:Filesystem:File:modified A
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA AE ARO AT
var t = async_test("File_modified_attribute"),
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
<html>
<head>
-<title> File_moveTo </title>
+<title>File_moveTo</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_moveTo
//==== LABEL: Check if method moveTo of File works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:moveTo M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMINA MR
var t = async_test("File_moveTo"), fsTestFileName, fsTestFile,
Authors:
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_moveTo_dir_samedir_samename_overwrite_false</title>
//==== LABEL check if error callback invoked when move a directory to the same location with the same name (overwrite is false).
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
Authors:
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_moveTo_dir_samedir_samename_overwrite_true</title>
//==== LABEL check if error callback invoked when move a directory to the same location with the same name (overwrite is true).
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
<html>
<head>
-<title> File_moveTo_empty_destination_source_and_destination_paths </title>
+<title>File_moveTo_empty_destination_source_and_destination_paths</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_moveTo_empty_destination_source_and_destination_paths
//==== LABEL check whether invoking 'moveTo' method with improper arguments calls error callback function properly
//==== SPEC Tizen Web API:IO:Filesystem:File:moveTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#moveToid2592799
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
var t = async_test("File_moveTo_empty_destination_source_and_destination_paths"),
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
- Beata Koziarek <b.koziarek@samsung.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
<html>
<head>
-<title> File_moveTo_with_path_invalid </title>
+<title>File_moveTo_exist</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Guan,JingX <jingx.guan@intel.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Guan,JingX <jingx.guan@intel.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
<html>
<head>
-<title> File_moveTo_file_samedir_samename_overwrite_false </title>
+<title>File_moveTo_file_samedir_samename_overwrite_false</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL check if error callback invoked when move a file to the same location with the same name (overwrite is false).
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:moveTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Guan,JingX <jingx.guan@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
<html>
<head>
-<title> File_moveTo_file_samedir_samename_overwrite_true </title>
+<title>File_moveTo_file_samedir_samename_overwrite_true</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL check if error callback invoked when move a file to the same location with the same name (overwrite is true)
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:moveTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
<html>
<head>
-<title> File_moveTo_onerror_TypeMismatch </title>
+<title>File_moveTo_onerror_TypeMismatch</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL: Check argument onError conversions exception in moveTo method.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:moveTo M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
var t = async_test("File_moveTo_onerror_TypeMismatch"),
resolveSuccess, resolveError, conversionTable, moveToError, i, moveToSuccess,
exceptionName = "TypeMismatchError";
-t.step(function() {
+t.step(function () {
moveToSuccess = t.step_func(function () {
assert_unreached("successCalback should not be called");
});
- resolveSuccess = t.step_func(function(dir) {
+ resolveSuccess = t.step_func(function (dir) {
conversionTable = getTypeConversionExceptions("functionObject", true);
for (i = 0; i < conversionTable.length; i++) {
moveToError = conversionTable[i][0];
assert_throws({
name: exceptionName
- }, function() {
+ }, function () {
dir.moveTo("verybadfile.txt", "images", true, moveToSuccess, moveToError);
}, exceptionName + " should be thrown - given incorrect error callback.");
}
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title> File_moveTo_onerror_invalid_cb </title>
+<title>File_moveTo_onerror_invalid_cb</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL: Test whether the constructor of the interface is defined or not in moveTo method onError callback.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:moveTo M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTCB
var t = async_test("File_moveTo_onerror_invalid_cb"), fsTestFileName, fsTestFile,
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title> File_moveTo_onsuccess_TypeMismatch </title>
+<title>File_moveTo_onsuccess_TypeMismatch</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL: Check argument onSuccess conversions exception in moveTo method.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:moveTo M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
var t = async_test("File_moveTo_onsuccess_TypeMismatch"), moveToSuccess, fsTestFileName, fsTestFile,
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title> File_moveTo_onsuccess_invalid_cb </title>
+<title>File_moveTo_onsuccess_invalid_cb</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL: check if an exception was thrown when a fake callback (onsuccess) was passed into moveTo method.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:moveTo M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTCB
var t = async_test("File_moveTo_onsuccess_invalid_cb"), resolveSuccess, resolveError,
limitations under the License.
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<meta charset="utf-8" />
-<title> File_moveTo_with_additional_null_parameter </title>
+<title>File_moveTo_with_additional_null_parameter</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== TEST: File_moveTo_with_additional_null_parameter
//==== LABEL check whether 'moveTo' method invoked with additional null parameter properly transfers a file
//==== SPEC Tizen Web API:IO:Filesystem:File:moveTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#moveToid2592799
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var this_test = async_test("File_moveTo_with_additional_null_parameter"), fsTestFileName2,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title> File_moveTo_with_file_handle </title>
+<title>File_moveTo_with_file_handle</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL check if errorCallback will be invoked when moveTo will be used with file handle.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:moveTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
<html>
<head>
-<title> File_moveTo_with_invalid_filePath </title>
+<title>File_moveTo_with_invalid_filePath</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL check whether invoking 'moveTo' method with improper argument calls error callback function properly
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:moveTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#moveToid2592799
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
var this_test = async_test("File_moveTo_with_invalid_filePath"), param = ["aa"], fsTestFileName,
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_moveTo_with_onerror</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== TEST: File_moveTo_with_onerror
//==== LABEL: Check if method moveTo wit onError optional argument works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:moveTo M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
var t = async_test("File_moveTo_with_onerror"),
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_moveTo_with_onsuccess</title>
<meta charset="utf-8"/>
//==== TEST: File_moveTo_with_onsuccess
//==== LABEL: Check if method moveTo wit onSuccess optional argument works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:moveTo M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MAST MOA
var t = async_test("File_moveTo_with_onsuccess"), listFilesError, resolveError,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
-<html lang="en">
+<html>
<head>
-<title> File_moveTo_with_path_invalid </title>
+<title>File_moveTo_with_path_invalid</title>
<meta charset="utf-8" />
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
//==== LABEL check if throw an exception when move a file to an invalid path.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:moveTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
-<html lang="en">
+<html>
<head>
-<title> File_moveTo_writeFile_newName </title>
+<title>File_moveTo_writeFile_newName</title>
<meta charset="utf-8" />
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
//==== TEST: File_moveTo_writeFile_newName
//==== LABEL check if create a new empty file and write content of the file and then move the file to the same location with different file name
//==== SPEC Tizen Web API:IO:Filesystem:File:moveTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
-<title> File_moveTo_writeFile_overwrite_false </title>
+<title>File_moveTo_writeFile_overwrite_false</title>
<meta charset="utf-8" />
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
//==== TEST: File_moveTo_writeFile_overwrite_false
//==== LABEL check if create a new empty file and write content of the file and then move the file to another location with same file name (overwrite false)
//==== SPEC Tizen Web API:IO:Filesystem:File:moveTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
-<html lang="en">
+<html>
<head>
-<title> File_moveTo_writeFile_subdir </title>
+<title>File_moveTo_writeFile_subdir</title>
<meta charset="utf-8" />
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
//==== TEST: File_moveTo_writeFile_subdir
//==== LABEL check if create a new empty file and write content of the file and then move the file to subdirectory with same file name
//==== SPEC Tizen Web API:IO:Filesystem:File:moveTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
limitations under the License.
Authors:
- Andrzej Krolikowski a.krolikowsk@samsung.com
+ Andrzej Krolikowski a.krolikowsk@samsung.com
-->
-<html lang="en">
+<html>
<head>
<title>File_name_attribute</title>
<meta charset="utf-8"/>
//==== TEST: File_name_attribute
//==== LABEL: Check if attribute name of File exists, has type DOMString and is readonly
//==== SPEC: Tizen Web API:IO:Filesystem:File:name A
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA AE ARO AT
var t = async_test("File_name_attribute"), fsTestFileName,
limitations under the License.
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
<html>
test(function () {
check_no_interface_object("File");
});
+
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<meta charset="utf-8" />
<title>File_openStream</title>
//==== TEST: File_openStream
//==== LABEL: Check if method openStream of File works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:openStream M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMINA MR
var t = async_test("File_openStream"), fsTestFileName, fsTestFile,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<meta charset="utf-8" />
-<title> File_openStream_encoding_invalid </title>
+<title>File_openStream_encoding_invalid</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL check if throw an exception when open the file in invalid encoding.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:openStream M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
- Beata Koziarek <b.koziarek@samsung.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
<html>
<head>
-<title> File_openStream_exist </title>
+<title>File_openStream_exist</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
</head>
<body>
//==== TEST_CRITERIA ME
var t = async_test("File_openStream_exist"), resolveSuccess, resolveError;
-t.step(function(){
+t.step(function (){
resolveSuccess = t.step_func(function (dir) {
assert_true("openStream" in dir, "method openStream is exist");
check_method_exists(dir, "listFiles");
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
+
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_openStream_missarg</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== PRIORITY: P2
//==== LABEL: Check if openStream of File with missing non-optional argument works
//==== SPEC: Tizen Web API:IO:Filesystem:File:openStream M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMA
var t = async_test("File_openStream_missarg"), fsTestFileName, fsTestFile,
t.step(function () {
fsTestFileName = getFileName("filesystem.txt");
- resolveSuccess = t.step_func(function(dir) {
+ resolveSuccess = t.step_func(function (dir) {
fsTestFile = dir.createFile(fsTestFileName);
assert_throws({
name: "TypeMismatchError"
- }, function() {
+ }, function () {
fsTestFile.openStream();
});
t.done();
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_openStream_mode_TypeMismatch</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== LABEL: Check argument mode conversions exception.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:openStream M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
var t = async_test("File_openStream_mode_TypeMismatch"),
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
-<html lang="en">
+<html>
<head>
<meta charset="utf-8" />
-<title> File_openStream_mode_a </title>
+<title>File_openStream_mode_a</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL check if open the file with mode a.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:openStream M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<meta charset="utf-8" />
-<title> File_openStream_mode_r </title>
+<title>File_openStream_mode_r</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL check if open the file with mode r.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:openStream M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MAST MOA
var resolveSuccess, resolveError, openStreamSuccess, openStreamError, fsTestFileName,
fsTestFile, documentsDir, t = async_test("File_openStream_mode_r");
-t.step(function(){
+t.step(function (){
fsTestFileName = getFileName("filesystem.txt");
openStreamSuccess = t.step_func(function (fs) {
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
-<html lang="en">
+<html>
<head>
<meta charset="utf-8" />
-<title> File_openStream_mode_rw </title>
+<title>File_openStream_mode_rw</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL check if open the file with mode rw.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:openStream M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MAST MOA
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
-<html lang="en">
+<html>
<head>
<meta charset="utf-8" />
-<title> File_openStream_mode_w </title>
+<title>File_openStream_mode_w</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL check if open the file with mode w.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:openStream M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MAST MOA
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_openStream_onerror_TypeMismatch</title>
<meta charset="utf-8"/>
//==== LABEL: Check argument onError conversions exception in openStream method.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:openStream M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
var t = async_test("File_openStream_onerror_TypeMismatch"),
resolveSuccess, resolveError, conversionTable, openStreamError, i, openStreamSuccess,
exceptionName = "TypeMismatchError";
-t.step(function() {
+t.step(function () {
openStreamSuccess = t.step_func(function (fs) {
fs.close();
assert_unreached("openStream() success callback invoked: should not be called");
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_openStream_onerror_invalid_cb</title>
<meta charset="utf-8"/>
//==== LABEL: Test whether the constructor of the interface is defined or not in openStream method onError callback.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:openStream M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTCB
var t = async_test("File_openStream_onerror_invalid_cb"),
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<meta charset="utf-8" />
<title>File_openStream_onsuccess_TypeMismatch</title>
//==== LABEL: Check argument onSuccess conversions exception in openStream method.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:openStream M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
var t = async_test("File_openStream_onsuccess_TypeMismatch"), openStreamSuccess,
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_openStream_onsuccess_invalid_cb</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== LABEL: Test whether the constructor of the interface is defined or not in openStream method onSuccess callback.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:openStream M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTCB
var t = async_test("File_openStream_onsuccess_invalid_cb"),
resolveSuccess, resolveError, openStreamSuccess, exceptionName = "TypeMismatchError", fsTestFileName, fsTestFile;
-t.step(function(){
+t.step(function (){
fsTestFileName = getFileName("filesystem.txt");
openStreamSuccess = {
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_openStream_with_encoding</title>
<meta charset="utf-8"/>
//==== TEST: File_openStream_with_encoding
//==== LABEL: Check if method openStream wit encoding optional argument works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:openStream M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MAST MOA
var t = async_test("File_openStream_with_encoding"), resolveSuccess, resolveError,
openStreamSuccess, openStreamError, fsTestFileName, fsTestFile;
-t.step(function(){
+t.step(function (){
fsTestFileName = getFileName("filesystem.txt");
openStreamError = t.step_func(function (error) {
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Ma,YueX <yuex.ma@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Ma,YueX <yuex.ma@intel.com>
-->
<html>
<head>
-<title> File_openStream_with_nonexist_file </title>
+<title>File_openStream_with_nonexist_file</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL check if throw an exception when open the file which not exist.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:openStream M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
deleteFileError, openStreamSuccess, openStreamError,
t = async_test("File_openStream_with_nonexist_file");
-t.step(function() {
+t.step(function () {
fsTestFileName = getFileName("filesystem.txt");
openStreamSuccess = t.step_func(function (fs) {
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_openStream_with_onerror</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== TEST: File_openStream_with_onerror
//==== LABEL: Check if method openStream wit onError optional argument works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:openStream M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MAST MOA
var t = async_test("File_openStream_with_onerror"),
resolveSuccess, resolveError, openStreamSuccess, openStreamError;
-t.step(function(){
+t.step(function (){
openStreamError = t.step_func(function () {
t.done();
});
Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_parent_attribute</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
//==== TEST: File_parent_attribute
//==== LABEL: Check if attribute parent of File exists, has type File and is readonly
//==== SPEC: Tizen Web API:IO:Filesystem:File:parent A
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA AE ARO AT
var t = async_test("File_parent_attribute"), resolveSuccess, resolveError, fsTestFileName,
Mariusz Polasinski <m.polasinski@samsung.com>>
-->
-<html lang="en">
+<html>
<head>
<title>File_parent_attribute_notnull_using_resolve</title>
<meta charset="utf-8"/>
//==== TEST: File_parent_attribute_notnull_using_resolve
//==== LABEL: Check if attribute parent of File is not null when using resolve method
//==== SPEC: Tizen Web API:IO:Filesystem:File:parent A
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
//Check if attribute parent of File is not null when using resolve method
var t = async_test("File_parent_attribute_notnull_using_resolve"),
resolveSuccess, resolveError, resolveFileSuccess, fsTestFileName;
-t.step(function(){
+t.step(function (){
fsTestFileName = getFileName("filesystem.txt");
resolveFileSuccess = t.step_func(function (file) {
Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_path_attribute</title>
<meta charset="utf-8"/>
//==== TEST: File_path_attribute
//==== LABEL: Check if attribute path of File exists, has type DOMString and is readonly
//==== SPEC: Tizen Web API:IO:Filesystem:File:path A
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA AE ARO AT
var t = async_test("File_path_attribute"), resolveSuccess, resolveError;
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_readAsText</title>
<meta charset="utf-8"/>
//==== TEST: File_readAsText
//==== LABEL: Check if method readAsText of File works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:readAsText M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMINA MR
var t = async_test("File_readAsText"), resolveSuccess, resolveError, stringInFile = "HelloWorld",
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
-->
-<html lang="en">
+<html>
<head>
<meta charset="utf-8" />
-<title> File_readAsText_encoding_invalid </title>
+<title>File_readAsText_encoding_invalid</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
</head>
//==== LABEL check if throw an exception when readAsText in invalid encoding.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:readAsText M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
var t = async_test("File_readAsText_encoding_invalid"), resolveSuccess, resolveError,
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
});
+
</script>
</body>
</html>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
- Kaiyu <kaiyux.li@intel.com>
- Guan,JingX <jingx.guan@intel.com>
- Beata Koziarek <b.koziarek@samsung.com>
+ Kaiyu <kaiyux.li@intel.com>
+ Guan,JingX <jingx.guan@intel.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
<html>
<head>
-<title> File_readAsText_exist </title>
+<title>File_readAsText_exist</title>
<script type="text/javascript" src="../resources/unitcommon.js"></script>
</head>
<body>
//==== TEST_CRITERIA ME
var t = async_test("File_readAsText_exist"), resolveSuccess, resolveError;
-t.step(function(){
+t.step(function (){
resolveSuccess = t.step_func(function (dir) {
assert_true("readAsText" in dir, "method readAsText is exist");
check_method_exists(dir, "readAsText");
tizen.filesystem.resolve("documents", resolveSuccess, resolveError, "rw");
});
+
</script>
</body>
</html>
<html>
<head>
-<title>check if list all files in documents and then read the content of the file as a DOMString</title>
+<title>File_readAsText_listDocumentsFiles</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
//==== TEST: File_readAsText_listDocumentsFiles
//==== LABEL check if list all files in documents and then read the content of the file as a DOMString
//==== SPEC Tizen Web API:IO:Filesystem:File:readAsText M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var testFile, resolveSuccess, resolveError, readAsTextSuccess,
t = async_test("File_readAsText_listDocumentsFiles"),
fsTestFileName = getFileName("write01.txt");
-t.step(function(){
- readAsTextSuccess = t.step_func(function(str) {
+t.step(function (){
+ readAsTextSuccess = t.step_func(function (str) {
assert_equals(str, text, "text readed from file is wrong");
t.done();
});
- readAsTextError = t.step_func(function(error) {
+ readAsTextError = t.step_func(function (error) {
assert_unreached("readAsText() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- openStreamSuccess = t.step_func(function(fs) {
+ openStreamSuccess = t.step_func(function (fs) {
fs.write(text);
fs.close();
testFile.readAsText(readAsTextSuccess, readAsTextError, "UTF-8");
});
- openStreamError = t.step_func(function(error) {
+ openStreamError = t.step_func(function (error) {
assert_unreached("openStream() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- listFilesSuccess = t.step_func(function(files) {
+ listFilesSuccess = t.step_func(function (files) {
testFile.openStream("rw", openStreamSuccess, openStreamError);
});
- listFilesError = t.step_func(function(error) {
+ listFilesError = t.step_func(function (error) {
assert_unreached("listFiles() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- resolveSuccess = t.step_func(function(dir) {
+ resolveSuccess = t.step_func(function (dir) {
testFile = dir.createFile(fsTestFileName);
dir.listFiles(listFilesSuccess, listFilesError);
});
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title>check if list all files in downloads and then read the content of the file as a DOMString</title>
+<title>File_readAsText_listDownloadsFiles</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
//==== TEST: File_readAsText_listDownloadsFiles
//==== LABEL check if list all files in downloads and then read the content of the file as a DOMString
//==== SPEC Tizen Web API:IO:Filesystem:File:readAsText M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var t = async_test("File_readAsText_listDownloadsFiles"),
openStreamError, readAsTextSuccess, readAsTextError,
fsTestFileName = getFileName("write01.txt");
-t.step(function(){
- readAsTextSuccess = t.step_func(function(str) {
+t.step(function (){
+ readAsTextSuccess = t.step_func(function (str) {
assert_equals(str, text, "text readed from file is wrong");
t.done();
});
- readAsTextError = t.step_func(function(error) {
+ readAsTextError = t.step_func(function (error) {
assert_unreached("readAsText() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- openStreamSuccess = t.step_func(function(fs) {
+ openStreamSuccess = t.step_func(function (fs) {
fs.write(text);
fs.close();
testFile.readAsText(readAsTextSuccess, readAsTextError, "UTF-8");
});
- openStreamError = t.step_func(function(error) {
+ openStreamError = t.step_func(function (error) {
assert_unreached("openStream() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- listFilesSuccess = t.step_func(function(files) {
+ listFilesSuccess = t.step_func(function (files) {
testFile.openStream("rw", openStreamSuccess, openStreamError);
});
- listFilesError = t.step_func(function(error) {
+ listFilesError = t.step_func(function (error) {
assert_unreached("listFiles() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- resolveSuccess = t.step_func(function(dir) {
+ resolveSuccess = t.step_func(function (dir) {
testFile = dir.createFile(fsTestFileName);
dir.listFiles(listFilesSuccess, listFilesError);
});
- resolveError = t.step_func(function(error) {
+ resolveError = t.step_func(function (error) {
assert_unreached("resolve() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title>check if list all files in images and then read the content of the file as a DOMString</title>
+<title>File_readAsText_listImagesFiles</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
//==== TEST: File_readAsText_listImagesFiles
//==== LABEL check if list all files in images and then read the content of the file as a DOMString
//==== SPEC Tizen Web API:IO:Filesystem:File:readAsText M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var text = "test write method", t = async_test("File_readAsText_listImagesFiles"),
readAsTextSuccess, readAsTextError,
fsTestFileName = getFileName("write01.txt");
-t.step(function(){
- readAsTextSuccess = t.step_func(function(str) {
+t.step(function (){
+ readAsTextSuccess = t.step_func(function (str) {
assert_equals(str, text, "text readed from file is wrong");
t.done();
});
- readAsTextError = t.step_func(function(error) {
+ readAsTextError = t.step_func(function (error) {
assert_unreached("readAsText() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- openStreamSuccess = t.step_func(function(fs) {
+ openStreamSuccess = t.step_func(function (fs) {
fs.write(text);
fs.close();
testFile.readAsText(readAsTextSuccess, readAsTextError, "UTF-8");
});
- openStreamError = t.step_func(function(error) {
+ openStreamError = t.step_func(function (error) {
assert_unreached("openStream() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- listFilesSuccess = t.step_func(function(files) {
+ listFilesSuccess = t.step_func(function (files) {
testFile.openStream("rw", openStreamSuccess, openStreamError);
});
- listFilesError = t.step_func(function(error) {
+ listFilesError = t.step_func(function (error) {
assert_unreached("listFiles() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- resolveSuccess = t.step_func(function(dir) {
+ resolveSuccess = t.step_func(function (dir) {
testFile = dir.createFile(fsTestFileName);
dir.listFiles(listFilesSuccess, listFilesError);
});
- resolveError = t.step_func(function(error) {
+ resolveError = t.step_func(function (error) {
assert_unreached("resolve() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title>check if list all files in music and then read the content of the file as a DOMString</title>
+<title>File_readAsText_listMusicFiles</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
//==== TEST: File_readAsText_listMusicFiles
//==== LABEL check if list all files in music and then read the content of the file as a DOMString
//==== SPEC Tizen Web API:IO:Filesystem:File:readAsText M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var testFile, resolveSuccess, resolveError, listFilesSuccess,
t = async_test("File_readAsText_listMusicFiles"),
fsTestFileName = getFileName("write01.txt");
-t.step(function(){
- readAsTextSuccess = t.step_func(function(str) {
+t.step(function (){
+ readAsTextSuccess = t.step_func(function (str) {
assert_equals(str, text, "text readed from file is wrong");
t.done();
});
- readAsTextError = t.step_func(function(error) {
+ readAsTextError = t.step_func(function (error) {
assert_unreached("readAsText() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- openStreamSuccess = t.step_func(function(fs) {
+ openStreamSuccess = t.step_func(function (fs) {
fs.write(text);
fs.close();
testFile.readAsText(readAsTextSuccess, readAsTextError, "UTF-8");
});
- openStreamError = t.step_func(function(error) {
+ openStreamError = t.step_func(function (error) {
assert_unreached("openStream() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- listFilesSuccess = t.step_func(function(files) {
+ listFilesSuccess = t.step_func(function (files) {
testFile.openStream("rw", openStreamSuccess, openStreamError);
});
- listFilesError = t.step_func(function(error) {
+ listFilesError = t.step_func(function (error) {
assert_unreached("listFiles() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- resolveSuccess = t.step_func(function(dir) {
+ resolveSuccess = t.step_func(function (dir) {
testFile = dir.createFile(fsTestFileName);
dir.listFiles(listFilesSuccess, listFilesError);
});
- resolveError = t.step_func(function(error) {
+ resolveError = t.step_func(function (error) {
assert_unreached("resolve() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title>check if list all files in videos and then read the content of the file as a DOMString</title>
+<title>File_readAsText_listVideosFiles</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
//==== TEST: File_readAsText_listVideosFiles
//==== LABEL check if list all files in videos and then read the content of the file as a DOMString
//==== SPEC Tizen Web API:IO:Filesystem:File:readAsText M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var text = "test write method", t = async_test("File_readAsText_listVideosFiles"),
readAsTextSuccess, readAsTextError,
fsTestFileName = getFileName("write01.txt");
-t.step(function(){
- readAsTextSuccess = t.step_func(function(str) {
+t.step(function (){
+ readAsTextSuccess = t.step_func(function (str) {
assert_equals(str, text, "text readed from file is wrong");
t.done();
});
- readAsTextError = t.step_func(function(error) {
+ readAsTextError = t.step_func(function (error) {
assert_unreached("readAsText() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- openStreamSuccess = t.step_func(function(fs) {
+ openStreamSuccess = t.step_func(function (fs) {
fs.write(text);
fs.close();
testFile.readAsText(readAsTextSuccess, readAsTextError, "UTF-8");
});
- openStreamError = t.step_func(function(error) {
+ openStreamError = t.step_func(function (error) {
assert_unreached("openStream() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- listFilesSuccess = t.step_func(function(files) {
+ listFilesSuccess = t.step_func(function (files) {
testFile.openStream("rw", openStreamSuccess, openStreamError);
});
- listFilesError = t.step_func(function(error) {
+ listFilesError = t.step_func(function (error) {
assert_unreached("listFiles() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- resolveSuccess = t.step_func(function(dir) {
+ resolveSuccess = t.step_func(function (dir) {
testFile = dir.createFile(fsTestFileName);
dir.listFiles(listFilesSuccess, listFilesError);
});
- resolveError = t.step_func(function(error) {
+ resolveError = t.step_func(function (error) {
assert_unreached("resolve() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
}
);
});
+
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_readAsText_missarg</title>
<meta charset="utf-8"/>
//==== PRIORITY: P2
//==== LABEL: Check if readAsText of File with missing non-optional argument works
//==== SPEC: Tizen Web API:IO:Filesystem:File:readAsText M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMA
var t = async_test("File_readAsText_missarg"),
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_readAsText_onerror_TypeMismatch</title>
<meta charset="utf-8"/>
//==== LABEL: Check argument onError conversions exception in readAsText method.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:readAsText M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
var t = async_test("File_readAsText_onerror_TypeMismatch"),
resolveSuccess, resolveError, conversionTable, readAsTextError, i,
readAsTextSuccess, exceptionName = "TypeMismatchError";
-t.step(function() {
+t.step(function () {
readAsTextSuccess = t.step_func(function () {
assert_unreached("successCalback should not be called");
});
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_readAsText_onerror_invalid_cb</title>
<meta charset="utf-8"/>
//==== LABEL: Test whether the constructor of the interface is defined or not in readAsText method onError callback.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:readAsText M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTCB
var t = async_test("File_readAsText_onerror_invalid_cb"),
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_readAsText_onsuccess_TypeMismatch</title>
<meta charset="utf-8"/>
//==== LABEL: Check argument onSuccess conversions exception in readAsText method.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:readAsText M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MC
var t = async_test("File_readAsText_onsuccess_TypeMismatch"), readAsTextSuccess,
exceptionName = "TypeMismatchError",
fsTestFileName = getFileName("goodFile2.txt");
-t.step(function(){
+t.step(function (){
resolveSuccess = t.step_func(function (dir) {
file = dir.createFile(fsTestFileName);
conversionTable = getTypeConversionExceptions("functionObject", false);
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_readAsText_onsuccess_invalid_cb</title>
<meta charset="utf-8"/>
//==== LABEL: Test whether the constructor of the interface is defined or not in readAsText method onSuccess callback.
//==== PRIORITY: P2
//==== SPEC: Tizen Web API:IO:Filesystem:File:readAsText M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MTCB
var t = async_test("File_readAsText_onsuccess_invalid_cb"),
exceptionName = "TypeMismatchError",
fsTestFileName = getFileName("goodFile.txt"), file;
-t.step(function(){
+t.step(function (){
readAsTextSuccess = {
onsuccess: t.step_func(function () {
assert_unreached("Invalid callback invoked: ");
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_readAsText_with_encoding</title>
<meta charset="utf-8"/>
//==== TEST: File_readAsText_with_encoding
//==== LABEL: Check if method readAsText wit encoding optional argument works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:readAsText M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
var t = async_test("File_readAsText_with_encoding"),
resolveSuccess, resolveError, listFilesSuccess, listFilesError,
readAsTextSuccess, readAsTextError, i;
-t.step(function(){
+t.step(function (){
readAsTextSuccess = t.step_func(function (files) {
t.done();
});
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_readAsText_with_onerror</title>
<meta charset="utf-8"/>
//==== TEST: File_readAsText_with_onerror
//==== LABEL: Check if method readAsText wit onError optional argument works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:readAsText M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MERRCB
var t = async_test("File_readAsText_with_onerror"),
Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_readOnly_attribute</title>
<meta charset="utf-8"/>
//==== TEST: File_readOnly_attribute
//==== LABEL: Check if attribute readOnly of File exists, has type Boolean and is readonly
//==== SPEC: Tizen Web API:IO:Filesystem:File:readOnly A
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA AE AT ARO
var t = async_test("File_readOnly_attribute"),
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_resolve</title>
<meta charset="utf-8"/>
//==== TEST: File_resolve
//==== LABEL: Check if method resolve of File works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:resolve M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMINA MR
var t = async_test("File_resolve"),
<html>
<head>
-<title> filesystem test - File resolve exist </title>
+<title>File_resolve_exist</title>
<script src="../resources/unitcommon.js"></script>
</head>
<body>
var t = async_test("File_resolve_exist"),
onSuccess, onError;
-t.step(function(){
+t.step(function (){
onSuccess = t.step_func(function (dir) {
assert_true("resolve" in dir, "method resolve is exist");
check_method_exists(dir, "resolve");
tizen.filesystem.resolve("documents", onSuccess, onError, "rw");
});
+
</script>
</body>
</html>
<html>
<head>
-<title> filesystem test - File resolve with invalid para </title>
+<title>File_resolve_with_invalid_para</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
//==== LABEL check if throw an exception when resolve a file with the incompatible input parameter.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
var t = async_test("File_resolve_with_invalid_para"),
}
);
});
+
</script>
</body>
</html>
-->
-<html lang="en">
+<html>
<head>
<meta charset="utf-8" />
-<title> File_resolve_with_nonexist </title>
+<title>File_resolve_with_nonexist</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script type="text/javascript" src="support/filesystem_common.js"></script>
//==== LABEL check if throw an exception when resolve a file which not exist.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA
var t = async_test("File_resolve_with_nonexist"),
);
});
+
</script>
</body>
</html>
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_toURI</title>
//==== TEST: File_toURI
//==== LABEL: Check if method toURI of File works properly.
//==== SPEC: Tizen Web API:IO:Filesystem:File:toURI M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MNA MR
var t = async_test("File_toURI"), resolveSuccess, resolveError, returnedValue, fsTestFileName, fsTestFile;
Authors:
- Beata Koziarek <b.koziarek@samsung.com>
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com>
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_toURI_exist</title>
<meta charset="utf-8"/>
Authors:
- Beata Koziarek <b.koziarek@samsung.com
- Mariusz Polasinski <m.polasinski@samsung.com>
+ Beata Koziarek <b.koziarek@samsung.com
+ Mariusz Polasinski <m.polasinski@samsung.com>
-->
-<html lang="en">
+<html>
<head>
<title>File_toURI_extra_argument</title>
<meta charset="utf-8"/>
//==== TEST: File_toURI_extra_argument
//==== LABEL: Check if method toURI of File accepts extra argument
//==== SPEC: Tizen Web API:IO:Filesystem:File:toURI M
-//==== SPEC_URL: https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MNAEX
var t = async_test("File_toURI_extra_argument"), resolveSuccess, resolveError;
-t.step(function(){
+t.step(function (){
resolveSuccess = t.step_func(function (dir) {
checkExtraArgument(dir, "toURI");
t.done();
-->
-<html lang="en">
+<html>
<head>
<title>File_toURI_with_nonexist_file</title>
//==== LABEL check if throw an exception when get a URI of nonexist file.
//==== PRIORITY P2
//==== SPEC Tizen Web API:IO:Filesystem:File:toURI M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MNA
var t = async_test("File_toURI_with_nonexist_file"),
resolveSuccess, resolveError, deleteFileSuccess, deleteFileError , fsTestFileName, fsTestFile, returnedValue;
-t.step(function() {
+t.step(function () {
fsTestFileName = getFileName("filesystem.txt");
deleteFileSuccess = t.step_func(function () {
<html>
<head>
-<title> filesystem test - FileStreamSuccessCallback onSuccess exist</title>
+<title>filesystem_FileStreamSuccessCallback_onsuccess</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
//==== TEST: filesystem_FileStreamSuccessCallback_onsuccess
//==== LABEL check if FileStreamSuccessCallback method: onsuccess is exist
//==== SPEC Tizen Web API:IO:Filesystem:FileStreamSuccessCallback:onsuccess M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA CBOA
// check if FileStreamSuccessCallback method: onSuccess is exist
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title>check if copy a file successfully</title>
+<title>filesystem_File_copyTo</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
//==== LABEL check if copy a file successfully
//==== PRIORITY P0
//==== SPEC Tizen Web API:IO:Filesystem:File:copyTo M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
// check if copy a file successfully
createFile, resolveSuccess, resolveError, copyToSuccess, copyToError,
fsTestFileName = getFileName("copyFile.txt");
-t.step(function(){
- copyToSuccess = t.step_func(function() {
+t.step(function (){
+ copyToSuccess = t.step_func(function () {
t.done();
});
copyToError = t.step_func(function (error) {
assert_unreached("copyTo() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- resolveSuccess = t.step_func(function(dir) {
+ resolveSuccess = t.step_func(function (dir) {
createFile = dir.createFile(fsTestFileName);
dir.copyTo(createFile.fullPath, "downloads/" + createFile.name, true, copyToSuccess, copyToError);
});
<html>
<head>
-<title> filesystem test - File readAsText </title>
+<title>filesystem_File_readAsText</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
//==== TEST: filesystem_File_readAsText
//==== LABEL check if reads the content of a file as a DOMString.
//==== SPEC Tizen Web API:IO:Filesystem:File:readAsText M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MOA
// check if reads the content of a file as a DOMString.
readAsTextSuccess, readAsTextError,
fsTestFileName = getFileName("write01.txt");
-t.step(function(){
- readAsTextSuccess = t.step_func(function(str) {
+t.step(function (){
+ readAsTextSuccess = t.step_func(function (str) {
assert_equals(str, text, "text readed from file is wrong");
t.done();
});
assert_unreached("readAsText() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- openStreamSuccess = t.step_func(function(fs) {
+ openStreamSuccess = t.step_func(function (fs) {
fs.write(text);
fs.close();
testFile.readAsText(readAsTextSuccess, readAsTextError, "UTF-8");
assert_unreached("openStream() error callback invoked: name: " + error.name + ", msg: " + error.message);
});
- resolveSuccess = t.step_func(function(dir) {
+ resolveSuccess = t.step_func(function (dir) {
testFile = dir.createFile(fsTestFileName);
testFile.openStream("rw", openStreamSuccess, openStreamError, "UTF-8");
});
}
);
});
+
</script>
</body>
</html>
<html>
<head>
-<title> filesystem test - File resolve </title>
+<title>filesystem_File_resolve</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/filesystem_common.js"></script>
//==== TEST: filesystem_File_resolve
//==== LABEL check if resolve a file and return a file handle
//==== SPEC Tizen Web API:IO:Filesystem:File:resolve M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html
//==== TEST_CRITERIA MMINA
// check if resolves a file and returns a file handle.
}
);
});
+
</script>
</body>
</html>
<specs>
<spec>
<spec_assertion interface="FileStream" element_type="method" element_name="close" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileStream" element_type="attribute" element_name="eof" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html </spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileStream" element_type="method" element_name="readBase64" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileStream" element_type="method" element_name="readBase64" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileStream" usage="true" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileStream" element_type="method" element_name="readBytes" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileStream" element_type="method" element_name="readBytes" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileStream" usage="true" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileStream" element_type="method" element_name="read" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileStream" element_type="method" element_name="read" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileStream" usage="true" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileStream" element_type="method" element_name="writeBase64" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileStream" element_type="method" element_name="writeBase64" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileStream" element_type="method" element_name="writeBytes" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileStream" element_type="method" element_name="writeBytes" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileStream" element_type="method" element_name="writeBytes" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileStream" element_type="method" element_name="writeBytes" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#writeBytesid2595057</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileStream" element_type="method" element_name="writeBytes" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileStream" element_type="method" element_name="write" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManagerObject" usage="true" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="addStorageStateChangeListener" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="addStorageStateChangeListener" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="addStorageStateChangeListener" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="addStorageStateChangeListener" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="addStorageStateChangeListener" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="addStorageStateChangeListener" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="addStorageStateChangeListener" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="addStorageStateChangeListener" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="addStorageStateChangeListener" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#listStoragesid2590135</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" usage="true" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="getStorage" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="getStorage" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="getStorage" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="getStorage" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="getStorage" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="getStorage" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="getStorage" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="getStorage" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="getStorage" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" usage="true" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="listStorages" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="listStorages" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="listStorages" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="listStorages" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="listStorages" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="listStorages" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="listStorages" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="listStorages" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#listStoragesid2590135</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="listStorages" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#listStoragesid2590135</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="listStorages" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="listStorages" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#listStoragesid2590135</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="listStorages" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#listStoragesid2590135</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="attribute" element_name="maxPathLength" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" usage="true" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="removeStorageStateChangeListener" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="removeStorageStateChangeListener" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="removeStorageStateChangeListener" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="removeStorageStateChangeListener" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#removeStorageStateChangeListenerid2587583</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemManager" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#resolveid2589634</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemStorage" element_type="attribute" element_name="label" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemStorage" element_type="attribute" element_name="state" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileSystemStorage" element_type="attribute" element_name="type" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#copyToid2592536</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#copyToid2592536</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#copyToid2592536</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="createDirectory" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="createDirectory" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="createFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="createFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="attribute" element_name="created" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteDirectory" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteDirectory" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteDirectory" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteDirectory" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteDirectory" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteDirectory" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteDirectory" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteDirectory" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteDirectory" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteDirectory" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteDirectory" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#deleteDirectoryid2593534</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteDirectory" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteDirectory" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#deleteDirectoryid2593534</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteDirectory" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteDirectory" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#deleteFileid2593782</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="deleteFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#deleteFileid2593782</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="attribute" element_name="fileSize" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="attribute" element_name="fullPath" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="attribute" element_name="isDirectory" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="attribute" element_name="isFile" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="attribute" element_name="length" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="listFiles" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="listFiles" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="listFiles" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="listFiles" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="listFiles" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="listFiles" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="listFiles" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="listFiles" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="listFiles" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="listFiles" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="listFiles" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="listFiles" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="listFiles" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#listFilesid2591852</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="attribute" element_name="modified" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="moveTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="moveTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#moveToid2592799</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="moveTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="moveTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="moveTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="moveTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="moveTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="moveTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="moveTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#moveToid2592799</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="moveTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="moveTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html#moveToid2592799</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="moveTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="moveTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="moveTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="moveTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="moveTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="moveTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="attribute" element_name="name" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="openStream" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="openStream" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="openStream" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="openStream" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="openStream" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="openStream" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="openStream" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="openStream" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="openStream" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="openStream" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="openStream" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="openStream" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="openStream" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="openStream" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="openStream" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="attribute" element_name="parent" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="attribute" element_name="parent" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="attribute" element_name="path" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="readAsText" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="readAsText" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="readAsText" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="readAsText" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="readAsText" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="readAsText" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="readAsText" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="readAsText" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="readAsText" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="readAsText" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="readAsText" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="readAsText" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="readAsText" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="readAsText" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="attribute" element_name="readOnly" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="toURI" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="toURI" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="toURI" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="FileStreamSuccessCallback" element_type="method" element_name="onsuccess" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="copyTo" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="readAsText" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>
<specs>
<spec>
<spec_assertion interface="File" element_type="method" element_name="resolve" specification="Filesystem" section="IO" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.help.web.api.device/tizen/filesystem.html</spec_url>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/filesystem.html</spec_url>
<spec_statement>TBD</spec_statement>
</spec>
</specs>