| Index: tests/html/storage_quota_test.dart
|
| diff --git a/tests/html/storage_quota_test.dart b/tests/html/storage_quota_test.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ea026153912ff2aa6d95fb8360d00f5833d23a83
|
| --- /dev/null
|
| +++ b/tests/html/storage_quota_test.dart
|
| @@ -0,0 +1,37 @@
|
| +library storage_quota_test;
|
| +
|
| +import 'package:unittest/unittest.dart';
|
| +import 'package:unittest/html_config.dart';
|
| +
|
| +import 'dart:async';
|
| +import 'dart:isolate';
|
| +import 'dart:html';
|
| +
|
| +main() {
|
| + useHtmlConfiguration();
|
| +
|
| + expectSaneStorageInfo(StorageInfo storageInfo) {
|
| + expect(storageInfo.usage, isNotNull);
|
| + expect(storageInfo.quota, isNotNull);
|
| + expect(storageInfo.usage >= 0, isTrue);
|
| + expect(storageInfo.quota >= storageInfo.usage, isNotNull);
|
| + };
|
| +
|
| + test('storage quota - temporary', () {
|
| + Future f = window.navigator.storageQuota.queryInfo('temporary');
|
| + expect(f.then(expectSaneStorageInfo), completes);
|
| + });
|
| +
|
| + test('storage quota - persistent', () {
|
| + Future f = window.navigator.storageQuota.queryInfo('persistent');
|
| + expect(f.then(expectSaneStorageInfo), completes);
|
| + });
|
| +
|
| + test('storage quota - unknown', () {
|
| + // Throwing synchronously is bogus upstream behavior; should result in a
|
| + // smashed promise.
|
| + expect(() => window.navigator.storageQuota.queryInfo("foo"), throws); /// missingenumcheck: ok
|
| + expect(() => window.navigator.storageQuota.queryInfo(3), throws);
|
| + expect(() => window.navigator.storageQuota.queryInfo(null), throws);
|
| + });
|
| +}
|
|
|