aboutsummaryrefslogtreecommitdiff
path: root/contexts/data/lib/closure-library/closure/goog/storage/storage_test.html
diff options
context:
space:
mode:
Diffstat (limited to 'contexts/data/lib/closure-library/closure/goog/storage/storage_test.html')
-rw-r--r--contexts/data/lib/closure-library/closure/goog/storage/storage_test.html55
1 files changed, 0 insertions, 55 deletions
diff --git a/contexts/data/lib/closure-library/closure/goog/storage/storage_test.html b/contexts/data/lib/closure-library/closure/goog/storage/storage_test.html
deleted file mode 100644
index 48d8cf4..0000000
--- a/contexts/data/lib/closure-library/closure/goog/storage/storage_test.html
+++ /dev/null
@@ -1,55 +0,0 @@
-<!DOCTYPE html>
-<html>
-<!--
-Copyright 2011 The Closure Library Authors. All Rights Reserved.
-
-Use of this source code is governed by the Apache License, Version 2.0.
-See the COPYING file for details.
-
--->
-<head>
-<meta http-equiv="X-UA-Compatible" content="IE=edge">
-<title>Closure Unit Tests - goog.storage.Storage</title>
-<script src="../base.js"></script>
-<script>
- goog.require('goog.storage.ErrorCode');
- goog.require('goog.storage.Storage');
- goog.require('goog.storage.mechanism.mechanismfactory');
- goog.require('goog.storage.storage_test');
- goog.require('goog.testing.jsunit');
- goog.require('goog.testing.storage.FakeMechanism');
-</script>
-</head>
-<body>
-<script>
-
-function testBasicOperations() {
- var mechanism = new goog.testing.storage.FakeMechanism();
- var storage = new goog.storage.Storage(mechanism);
- goog.storage.storage_test.runBasicTests(storage);
-}
-
-function testMechanismCommunication() {
- var mechanism = new goog.testing.storage.FakeMechanism();
- var storage = new goog.storage.Storage(mechanism);
-
- // Invalid JSON.
- mechanism.set('first', '');
- assertEquals(goog.storage.ErrorCode.INVALID_VALUE,
- assertThrows(function() {storage.get('first')}));
- mechanism.set('second', '(');
- assertEquals(goog.storage.ErrorCode.INVALID_VALUE,
- assertThrows(function() {storage.get('second')}));
-
- // Cleaning up.
- storage.remove('first');
- storage.remove('second');
- assertUndefined(storage.get('first'));
- assertUndefined(storage.get('second'));
- assertNull(mechanism.get('first'));
- assertNull(mechanism.get('second'));
-}
-
-</script>
-</body>
-</html>