Bug 783593 - Device Storage - Test to ensure onchange notifications go to the right object. r=khuey

This commit is contained in:
Doug Turner 2012-08-26 21:33:13 -07:00
Родитель 38bc8ae1b9
Коммит 4102a9b6d0
4 изменённых файлов: 90 добавлений и 5 удалений

Просмотреть файл

@ -491,6 +491,15 @@ nsDOMDeviceStorage::SetRootFileForType(const nsAString& aType)
f->Normalize();
}
}
if (aType.Equals(NS_LITERAL_STRING("testing-other"))) {
dirService->Get(NS_OS_TEMP_DIR, NS_GET_IID(nsIFile), getter_AddRefs(f));
if (f) {
f->AppendRelativeNativePath(NS_LITERAL_CSTRING("device-storage-testing-other"));
f->Create(nsIFile::DIRECTORY_TYPE, 0777);
f->Normalize();
}
}
}
#ifdef MOZ_WIDGET_GONK

Просмотреть файл

@ -21,6 +21,7 @@ MOCHITEST_FILES = \
test_lastModificationFilter.html \
test_stat.html \
test_watch.html \
test_watchOther.html \
devicestorage_common.js \
$(NULL)

Просмотреть файл

@ -17,7 +17,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=717103
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=717103">Mozilla Bug 717103</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
@ -58,15 +58,12 @@ function makeFile() {
}
var storage = navigator.getDeviceStorage("testing");
ok(navigator.getDeviceStorage, "Should have getDeviceStorage");
ok(storage, "Should have storage");
storage.addEventListener("change", onChange);
// since addEventListener is async, we have to wait until
// it's definitely done before we make the file.
setTimeout(makeFile,100);
</script>
</pre>
</body>
</html>

Просмотреть файл

@ -0,0 +1,78 @@
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE HTML>
<html> <!--
https://bugzilla.mozilla.org/show_bug.cgi?id=717103
-->
<head>
<title>Test for the device storage API </title>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="text/javascript" src="devicestorage_common.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=717103">Mozilla Bug 717103</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
devicestorage_setup();
var gFileName = randomFilename(20);
function addSuccess(e) {
}
function addError(e) {
ok(false, "addError was called : " + e.target.error.name);
devicestorage_cleanup();
}
function onChange(e) {
dump("we saw: " + e.path + " " + e.reason + "\n");
if (e.path == gFileName) {
ok(true, "we saw the file get created");
storage.removeEventListener("change", onChange);
devicestorage_cleanup();
}
else {
// we may see other file changes during the test, and
// that is completely ok
}
}
function onChangeFail(e) {
dump("onChangeFail: " + e.path + " " + e.reason + "\n");
ok(false, "We should never see any changes");
}
function makeFile() {
request = storage.addNamed(createRandomBlob(), gFileName);
ok(request, "Should have a non-null request");
request.onsuccess = addSuccess;
request.onerror = addError;
}
var storage = navigator.getDeviceStorage("testing");
ok(storage, "Should have storage");
storage.addEventListener("change", onChange);
var storageOther = navigator.getDeviceStorage("testing-other");
ok(storageOther, "Should have storage");
storageOther.addEventListener("change", onChangeFail);
setTimeout(makeFile,100);
</script>
</pre>
</body>
</html>