-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ce7669f
commit eb6a5ab
Showing
9 changed files
with
1,433 additions
and
435 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
integration-tests/e2e-tests/src/configuration/InMemoryStore.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
import SDK from "@atala/prism-wallet-sdk" | ||
|
||
import { MangoQuery } from "rxdb"; | ||
|
||
/** | ||
* WARNING: Do not use this Pluto Store implementation, its for test purposes only. | ||
* Persistence is inMemory and totally unprotected. | ||
* Functionality isn't 100% covered - only handling what is necessary | ||
*/ | ||
export class InMemoryStore implements SDK.Pluto.Store { | ||
|
||
private store = new Map<string, any[]>(); | ||
|
||
async query<T>(table: string, query?: MangoQuery<T>): Promise<T[]> { | ||
const items = this.get(table); | ||
const selector = { ...query?.selector ?? {} }; | ||
|
||
const filtered = items.filter(item => { | ||
if (Object.keys(selector).length === 0) return true; | ||
|
||
const { $or, $and, ...props } = selector; | ||
const matchProps = this.match(props, item); | ||
const matchOr = ($or ?? []).reduce((acc, x) => acc || this.match(x, item), false); | ||
const matchAnd = $and?.length > 0 ? ($and ?? []).reduce((acc, x) => acc && this.match(x, item), true) : false | ||
return matchOr || matchAnd || matchProps; | ||
}); | ||
|
||
return filtered; | ||
} | ||
|
||
async insert(table: string, model: any): Promise<void> { | ||
const items = this.get(table); | ||
items.push(model); | ||
} | ||
|
||
private get(key: string) { | ||
const current = this.store.get(key); | ||
|
||
if (!current) { | ||
this.store.set(key, []); | ||
} | ||
|
||
return this.store.get(key)!; | ||
} | ||
|
||
private match(query: Record<string, any>, item: any) { | ||
const keys = Object.keys(query); | ||
if (keys.length <= 0) { | ||
return false | ||
} | ||
const match = keys.every(key => item[key] == query[key]); | ||
return match; | ||
} | ||
|
||
|
||
update<T extends SDK.Domain.Pluto.Storable>(table: string, model: T): Promise<void> { | ||
throw new Error("Method not implemented."); | ||
} | ||
|
||
delete(table: string, uuid: string): Promise<void> { | ||
throw new Error("Method not implemented."); | ||
} | ||
} |
Oops, something went wrong.
eb6a5ab
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
JUnit
eb6a5ab
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
JUnit