mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-11 00:08:30 +01:00
6914bd7908
Co-authored-by: Ivar Conradi Østhus <ivarconr@gmail.com>
165 lines
4.9 KiB
TypeScript
165 lines
4.9 KiB
TypeScript
import {
|
|
FeatureEnvironmentKey,
|
|
IFeatureEnvironmentStore,
|
|
} from '../../lib/types/stores/feature-environment-store';
|
|
import { IFeatureEnvironment } from '../../lib/types/model';
|
|
import NotFoundError from '../../lib/error/notfound-error';
|
|
|
|
export default class FakeFeatureEnvironmentStore
|
|
implements IFeatureEnvironmentStore
|
|
{
|
|
featureEnvironments: IFeatureEnvironment[] = [];
|
|
|
|
async addEnvironmentToFeature(
|
|
featureName: string,
|
|
environment: string,
|
|
enabled: boolean,
|
|
): Promise<void> {
|
|
this.featureEnvironments.push({ environment, enabled, featureName });
|
|
}
|
|
|
|
async delete(key: FeatureEnvironmentKey): Promise<void> {
|
|
this.featureEnvironments.splice(
|
|
this.featureEnvironments.findIndex(
|
|
(fE) =>
|
|
fE.environment === key.environment &&
|
|
fE.featureName === key.featureName,
|
|
),
|
|
1,
|
|
);
|
|
}
|
|
|
|
async deleteAll(): Promise<void> {
|
|
this.featureEnvironments = [];
|
|
}
|
|
|
|
destroy(): void {}
|
|
|
|
async disconnectFeatures(
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
environment: string,
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
project: string,
|
|
): Promise<void> {
|
|
return Promise.resolve(undefined);
|
|
}
|
|
|
|
async exists(key: FeatureEnvironmentKey): Promise<boolean> {
|
|
return this.featureEnvironments.some(
|
|
(fE) =>
|
|
fE.featureName === key.featureName &&
|
|
fE.environment === key.environment,
|
|
);
|
|
}
|
|
|
|
async featureHasEnvironment(
|
|
environment: string,
|
|
featureName: string,
|
|
): Promise<boolean> {
|
|
return this.exists({ environment, featureName });
|
|
}
|
|
|
|
async get(key: FeatureEnvironmentKey): Promise<IFeatureEnvironment> {
|
|
const featureEnvironment = this.featureEnvironments.find(
|
|
(fE) =>
|
|
fE.environment === key.environment &&
|
|
fE.featureName === key.featureName,
|
|
);
|
|
if (featureEnvironment) {
|
|
return featureEnvironment;
|
|
}
|
|
throw new NotFoundError(
|
|
`Could not find environment ${key.environment} for feature: ${key.featureName}`,
|
|
);
|
|
}
|
|
|
|
async getAll(): Promise<IFeatureEnvironment[]> {
|
|
return this.featureEnvironments;
|
|
}
|
|
|
|
getEnvironmentMetaData(
|
|
environment: string,
|
|
featureName: string,
|
|
): Promise<IFeatureEnvironment> {
|
|
return this.get({ environment, featureName });
|
|
}
|
|
|
|
async isEnvironmentEnabled(
|
|
featureName: string,
|
|
environment: string,
|
|
): Promise<boolean> {
|
|
try {
|
|
const fE = await this.get({ featureName, environment });
|
|
return fE.enabled;
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
async removeEnvironmentForFeature(
|
|
featureName: string,
|
|
environment: string,
|
|
): Promise<void> {
|
|
return this.delete({ featureName, environment });
|
|
}
|
|
|
|
async setEnvironmentEnabledStatus(
|
|
environment: string,
|
|
featureName: string,
|
|
enabled: boolean,
|
|
): Promise<number> {
|
|
const fE = await this.get({ environment, featureName });
|
|
if (fE.enabled !== enabled) {
|
|
fE.enabled = enabled;
|
|
return 1;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
async connectProject(
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
environment: string,
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
projectId: string,
|
|
): Promise<void> {
|
|
return Promise.reject(new Error('Not implemented'));
|
|
}
|
|
|
|
async connectFeatures(
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
environment: string,
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
projectId: string,
|
|
): Promise<void> {
|
|
return Promise.reject(new Error('Not implemented'));
|
|
}
|
|
|
|
async disconnectProject(
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
environment: string,
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
projectId: string,
|
|
): Promise<void> {
|
|
return Promise.reject(new Error('Not implemented'));
|
|
}
|
|
|
|
async connectFeatureToEnvironmentsForProject(
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
featureName: string,
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
projectId: string,
|
|
): Promise<void> {
|
|
return Promise.reject(new Error('Not implemented'));
|
|
}
|
|
|
|
disableEnvironmentIfNoStrategies(
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
featureName: string,
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
environment: string,
|
|
): Promise<void> {
|
|
return Promise.reject(new Error('Not implemented'));
|
|
}
|
|
}
|