mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-09 19:22:51 +00:00
53 lines
1.7 KiB
TypeScript
53 lines
1.7 KiB
TypeScript
/*
|
|
* Copyright (C) 2018 StApps
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the Free
|
|
* Software Foundation, version 3.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
import {SCMessage} from '@openstapps/core';
|
|
import {Validator} from '@openstapps/core-tools/lib/validate';
|
|
import {expect} from 'chai';
|
|
import {suite, test} from 'mocha-typescript';
|
|
import {MinimalConnector} from '../src';
|
|
|
|
@suite
|
|
export class MinimalConnectorSpec {
|
|
|
|
private static connector: MinimalConnector;
|
|
private static validator: Validator;
|
|
|
|
static before() {
|
|
this.validator = new Validator();
|
|
this.connector = new MinimalConnector();
|
|
}
|
|
|
|
static validateThings(things: SCMessage[]) {
|
|
this.validator.addSchemas('./node_modules/@openstapps/core/lib/schema').then(() => {
|
|
things.forEach((thing: SCMessage) => {
|
|
// validate thing
|
|
expect(MinimalConnectorSpec.validator.validate(thing,"SCMessage").errors).to.have.lengthOf(0, JSON.stringify({
|
|
errors: MinimalConnectorSpec.validator.validate(thing,"SCMessage").errors,
|
|
thing: thing,
|
|
}));
|
|
});
|
|
});
|
|
}
|
|
|
|
@test
|
|
getSampleThings() {
|
|
return MinimalConnectorSpec.connector.getItems().then(<T extends SCMessage>(items: T[]) => {
|
|
if (items.length > 0) {
|
|
MinimalConnectorSpec.validateThings(items);
|
|
}
|
|
});
|
|
}
|
|
}
|