src.app.core.services.scenario.service.ts Maven / Gradle / Ivy
The newest version!
/**
* Copyright 2017-2023 Enedis
*
* 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 { Injectable } from '@angular/core';
import { Observable } from 'rxjs';
import { map } from 'rxjs/operators';
import { GwtTestCase, ScenarioIndex, TestCase } from '@model';
import { environment } from '@env/environment';
import { HttpClient } from '@angular/common/http';
@Injectable({
providedIn: 'root'
})
export class ScenarioService {
private resourceUrl = '/api/scenario/v2/raw';
private resourceUrlV2 = '/api/scenario/v2';
private static convert(testCase: TestCase): TestCase {
const copy: TestCase = Object.assign({}, testCase);
ScenarioService.cleanTags(copy);
return copy;
}
private static convertGwt(gwtTestCase: GwtTestCase): any {
ScenarioService.cleanTags(gwtTestCase);
return gwtTestCase.serialize();
}
private static cleanTags(scenario: any) {
if (scenario.tags != null && scenario.tags.length > 0) {
scenario.tags = scenario.tags.map((tag) => tag.toLocaleUpperCase().trim())
.reduce((filteredTags, tag) => {
if (filteredTags.indexOf(tag) < 0) {
filteredTags.push(tag);
}
return filteredTags;
}, []);
}
}
constructor(private httpClient: HttpClient) {
}
findRawTestCase(id: string): Observable {
return this.httpClient.get(environment.backend + `${this.resourceUrl}/${id}`).pipe(map((res: TestCase) => {
return TestCase.fromRaw(res);
}));
}
createOrUpdateRawTestCase(testCase: TestCase): Observable {
if (testCase.id === undefined) {
return this.createRawTestCase(testCase);
} else {
return this.updateRawTestCase(testCase);
}
}
createRawTestCase(testCase: TestCase): Observable {
const copy = ScenarioService.convert(testCase);
return this.httpClient.post(environment.backend + this.resourceUrl, copy);
}
updateRawTestCase(testCase: TestCase): Observable {
const copy = ScenarioService.convert(testCase);
// an update should better use PUT :(
return this.httpClient.post(environment.backend + this.resourceUrl, copy);
}
findScenarios(): Observable> {
return this.httpClient.get>(environment.backend + this.resourceUrlV2)
.pipe(map((res: Array) => {
return this.mapJsonScenario(res);
}));
}
findScenarioMetadata(id: string): Observable {
return this.httpClient.get(environment.backend + `${this.resourceUrlV2}/${id}/metadata`)
.pipe(map((res: any) => {
return this.mapJsonScenario([res])[0];
}));
}
findTestCase(id: string): Observable {
return this.httpClient.get(environment.backend + `${this.resourceUrlV2}/${id}`).pipe(map((res: GwtTestCase) => {
return GwtTestCase.deserialize(res);
}));
}
createOrUpdateGwtTestCase(testCase: GwtTestCase): Observable {
if (testCase.id === undefined) {
return this.createGwtTestCase(testCase);
} else {
return this.updateGwtTestCase(testCase);
}
}
createGwtTestCase(testCase: GwtTestCase): Observable {
const gwtTestCaseJsonObject = ScenarioService.convertGwt(testCase);
return this.httpClient.post(environment.backend + this.resourceUrlV2, gwtTestCaseJsonObject);
}
updateGwtTestCase(testCase: GwtTestCase): Observable {
const gwtTestCaseJsonObject = ScenarioService.convertGwt(testCase);
return this.httpClient.patch(environment.backend + this.resourceUrlV2, gwtTestCaseJsonObject);
}
delete(id: string): Observable