Headless CMS and Content Managment Hub
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

104 lines
3.5 KiB

/*
* Squidex Headless CMS
*
* @license
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
*/
import { DialogService, versioned } from '@app/shared/internal';
import { of, throwError } from 'rxjs';
import { onErrorResumeNext } from 'rxjs/operators';
import { IMock, It, Mock, Times } from 'typemoq';
import { AppsService, AssetScriptsPayload } from '../services/apps.service';
import { createAssetScripts } from '../services/apps.service.spec';
import { AssetScriptsState } from './asset-scripts.state';
import { TestValues } from './_test-helpers';
describe('AssetScriptsState', () => {
const {
app,
appsState,
newVersion,
version,
} = TestValues;
const oldScripts = createAssetScripts(1);
let dialogs: IMock<DialogService>;
let appsService: IMock<AppsService>;
let assetScriptsState: AssetScriptsState;
beforeEach(() => {
dialogs = Mock.ofType<DialogService>();
appsService = Mock.ofType<AppsService>();
assetScriptsState = new AssetScriptsState(appsState.object, appsService.object, dialogs.object);
});
afterEach(() => {
appsService.verifyAll();
});
describe('Loading', () => {
it('should load clients', () => {
appsService.setup(x => x.getAssetScripts(app))
.returns(() => of(versioned(version, oldScripts))).verifiable();
assetScriptsState.load().subscribe();
expect(assetScriptsState.snapshot.scripts).toEqual(oldScripts.scripts);
expect(assetScriptsState.snapshot.isLoaded).toBeTruthy();
expect(assetScriptsState.snapshot.isLoading).toBeFalsy();
expect(assetScriptsState.snapshot.version).toEqual(version);
dialogs.verify(x => x.notifyInfo(It.isAnyString()), Times.never());
});
it('should reset loading state if loading failed', () => {
appsService.setup(x => x.getAssetScripts(app))
.returns(() => throwError(() => 'Service Error'));
assetScriptsState.load().pipe(onErrorResumeNext()).subscribe();
expect(assetScriptsState.snapshot.isLoading).toBeFalsy();
});
it('should show notification on load if reload is true', () => {
appsService.setup(x => x.getAssetScripts(app))
.returns(() => of(versioned(version, oldScripts))).verifiable();
assetScriptsState.load(true).subscribe();
expect().nothing();
dialogs.verify(x => x.notifyInfo(It.isAnyString()), Times.once());
});
});
describe('Updates', () => {
beforeEach(() => {
appsService.setup(x => x.getAssetScripts(app))
.returns(() => of(versioned(version, oldScripts))).verifiable();
assetScriptsState.load().subscribe();
});
it('should update scripts if scripts updated', () => {
const updated = createAssetScripts(1, '_new');
const request = { id: 'id3' };
appsService.setup(x => x.putAssetScripts(app, oldScripts, request, version))
.returns(() => of(versioned(newVersion, updated))).verifiable();
assetScriptsState.update(request).subscribe();
expectNewScripts(updated);
});
function expectNewScripts(updated: AssetScriptsPayload) {
expect(assetScriptsState.snapshot.scripts).toEqual(updated.scripts);
expect(assetScriptsState.snapshot.version).toEqual(newVersion);
}
});
});