782811c634
By this change we check if provided access grant name is free to use at the very beginning of the creation flow. Issue: https://github.com/storj/storj/issues/5693 Change-Id: I06583bf458cea977cb0a920d55df50f2d19e1599
47 lines
1.4 KiB
TypeScript
47 lines
1.4 KiB
TypeScript
// Copyright (C) 2020 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import {
|
|
AccessGrant,
|
|
AccessGrantCursor,
|
|
AccessGrantsApi,
|
|
AccessGrantsPage,
|
|
EdgeCredentials,
|
|
} from '@/types/accessGrants';
|
|
|
|
/**
|
|
* Mock for AccessGrantsApi
|
|
*/
|
|
export class AccessGrantsMock implements AccessGrantsApi {
|
|
private readonly date = new Date(0);
|
|
private mockAccessGrantsPage: AccessGrantsPage;
|
|
|
|
public setMockAccessGrantsPage(mockAccessGrantsPage: AccessGrantsPage): void {
|
|
this.mockAccessGrantsPage = mockAccessGrantsPage;
|
|
}
|
|
|
|
get(_projectId: string, _cursor: AccessGrantCursor): Promise<AccessGrantsPage> {
|
|
return Promise.resolve(this.mockAccessGrantsPage);
|
|
}
|
|
|
|
create(_projectId: string, _name: string): Promise<AccessGrant> {
|
|
return Promise.resolve(new AccessGrant('testId', 'testName', this.date, 'testKey'));
|
|
}
|
|
|
|
delete(_ids: string[]): Promise<void> {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
deleteByNameAndProjectID(_name: string, _projectID: string): Promise<void> {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
getAllAPIKeyNames(_projectID: string): Promise<string[]> {
|
|
return Promise.resolve([]);
|
|
}
|
|
|
|
getGatewayCredentials(_accessGrant: string, _requestURL: string): Promise<EdgeCredentials> {
|
|
return Promise.resolve(new EdgeCredentials('testCredId', new Date(), 'testAccessKeyId', 'testSecret', 'testEndpoint'));
|
|
}
|
|
}
|