2021-06-02 16:02:03 +05:30
|
|
|
/*
|
|
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {FDBFactory, FDBKeyRange} from "../../lib/fake-indexeddb/index.js";
|
2021-08-13 22:43:40 +05:30
|
|
|
import {StorageFactory} from "../matrix/storage/idb/StorageFactory";
|
2021-09-28 17:49:29 +05:30
|
|
|
import {Storage} from "../matrix/storage/idb/Storage";
|
2021-09-22 00:28:50 +05:30
|
|
|
import {Instance as nullLogger} from "../logging/NullLogger.js";
|
2021-09-28 17:49:29 +05:30
|
|
|
import {openDatabase, CreateObjectStore} from "../matrix/storage/idb/utils";
|
2021-06-02 16:02:03 +05:30
|
|
|
|
2021-09-28 17:49:29 +05:30
|
|
|
export function createMockStorage(): Promise<Storage> {
|
|
|
|
return new StorageFactory(null as any, new FDBFactory(), FDBKeyRange).create("1", nullLogger.item);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function createMockDatabase(name: string, createObjectStore: CreateObjectStore, impl: MockIDBImpl): Promise<IDBDatabase> {
|
|
|
|
return openDatabase(name, createObjectStore, 1, impl.idbFactory);
|
|
|
|
}
|
|
|
|
|
|
|
|
export class MockIDBImpl {
|
|
|
|
idbFactory: FDBFactory;
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
this.idbFactory = new FDBFactory();
|
|
|
|
}
|
|
|
|
|
|
|
|
get IDBKeyRange(): typeof IDBKeyRange {
|
|
|
|
return FDBKeyRange;
|
|
|
|
}
|
2021-08-13 22:43:40 +05:30
|
|
|
}
|