Complete residential site build with Docker Compose & Gitea Actions deployment
This commit is contained in:
+231
@@ -0,0 +1,231 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Red Hat. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
const sinon = require("sinon");
|
||||
const chai = require("chai");
|
||||
const sinonChai = require("sinon-chai");
|
||||
const path = require("path");
|
||||
const SchemaService = require("../src/languageservice/services/yamlSchemaService");
|
||||
const yamlParser07_1 = require("../src/languageservice/parser/yamlParser07");
|
||||
const yamlSettings_1 = require("../src/yamlSettings");
|
||||
const schemaUrls_1 = require("../src/languageservice/utils/schemaUrls");
|
||||
const expect = chai.expect;
|
||||
chai.use(sinonChai);
|
||||
describe('YAML Schema Service', () => {
|
||||
const sandbox = sinon.createSandbox();
|
||||
afterEach(() => {
|
||||
sandbox.restore();
|
||||
});
|
||||
describe('Schema for resource', () => {
|
||||
let requestServiceMock;
|
||||
beforeEach(() => {
|
||||
requestServiceMock = sandbox.fake.resolves(undefined);
|
||||
});
|
||||
it('should handle inline schema http url', () => {
|
||||
const documentContent = `# yaml-language-server: $schema=http://json-schema.org/draft-07/schema# anothermodeline=value\n`;
|
||||
const content = `${documentContent}\n---\n- `;
|
||||
const yamlDock = (0, yamlParser07_1.parse)(content);
|
||||
const service = new SchemaService.YAMLSchemaService(requestServiceMock);
|
||||
service.getSchemaForResource('', yamlDock.documents[0]);
|
||||
expect(requestServiceMock).calledOnceWith('http://json-schema.org/draft-07/schema#');
|
||||
});
|
||||
it('should handle inline schema https url', () => {
|
||||
const documentContent = `# yaml-language-server: $schema=https://json-schema.org/draft-07/schema# anothermodeline=value\n`;
|
||||
const content = `${documentContent}\n---\n- `;
|
||||
const yamlDock = (0, yamlParser07_1.parse)(content);
|
||||
const service = new SchemaService.YAMLSchemaService(requestServiceMock);
|
||||
service.getSchemaForResource('', yamlDock.documents[0]);
|
||||
expect(requestServiceMock).calledOnceWith('https://json-schema.org/draft-07/schema#');
|
||||
});
|
||||
it('should handle url with fragments', async () => {
|
||||
const content = `# yaml-language-server: $schema=https://json-schema.org/draft-07/schema#/definitions/schemaArray\nfoo: bar`;
|
||||
const yamlDock = (0, yamlParser07_1.parse)(content);
|
||||
requestServiceMock = sandbox.fake.resolves(`{"definitions": {"schemaArray": {
|
||||
"type": "array",
|
||||
"minItems": 1,
|
||||
"items": { "$ref": "#" }
|
||||
}}, "properties": {}}`);
|
||||
const service = new SchemaService.YAMLSchemaService(requestServiceMock);
|
||||
const schema = await service.getSchemaForResource('', yamlDock.documents[0]);
|
||||
expect(requestServiceMock).calledTwice;
|
||||
expect(requestServiceMock).calledWithExactly('https://json-schema.org/draft-07/schema');
|
||||
expect(requestServiceMock).calledWithExactly('https://json-schema.org/draft-07/schema#/definitions/schemaArray');
|
||||
expect(schema.schema.type).eqls('array');
|
||||
});
|
||||
it('should handle url with fragments when root object is schema', async () => {
|
||||
const content = `# yaml-language-server: $schema=https://json-schema.org/draft-07/schema#/definitions/schemaArray`;
|
||||
const yamlDock = (0, yamlParser07_1.parse)(content);
|
||||
requestServiceMock = sandbox.fake.resolves(`{"definitions": {"schemaArray": {
|
||||
"type": "array",
|
||||
"minItems": 1,
|
||||
"items": { "$ref": "#" }
|
||||
},
|
||||
"bar": {
|
||||
"type": "string"
|
||||
}
|
||||
}, "properties": {"foo": {"type": "boolean"}}, "required": ["foo"]}`);
|
||||
const service = new SchemaService.YAMLSchemaService(requestServiceMock);
|
||||
const schema = await service.getSchemaForResource('', yamlDock.documents[0]);
|
||||
expect(requestServiceMock).calledTwice;
|
||||
expect(requestServiceMock).calledWithExactly('https://json-schema.org/draft-07/schema');
|
||||
expect(requestServiceMock).calledWithExactly('https://json-schema.org/draft-07/schema#/definitions/schemaArray');
|
||||
expect(schema.schema.type).eqls('array');
|
||||
expect(schema.schema.required).is.undefined;
|
||||
expect(schema.schema.definitions.bar.type).eqls('string');
|
||||
});
|
||||
it('should handle file path with fragments', async () => {
|
||||
const content = `# yaml-language-server: $schema=schema.json#/definitions/schemaArray\nfoo: bar`;
|
||||
const yamlDock = (0, yamlParser07_1.parse)(content);
|
||||
requestServiceMock = sandbox.fake.resolves(`{"definitions": {"schemaArray": {
|
||||
"type": "array",
|
||||
"minItems": 1,
|
||||
"items": { "$ref": "#" }
|
||||
}}, "properties": {}}`);
|
||||
const service = new SchemaService.YAMLSchemaService(requestServiceMock);
|
||||
const schema = await service.getSchemaForResource('', yamlDock.documents[0]);
|
||||
expect(requestServiceMock).calledTwice;
|
||||
if (process.platform === 'win32') {
|
||||
const driveLetter = path.parse(__dirname).root.split(':')[0].toLowerCase();
|
||||
expect(requestServiceMock).calledWithExactly(`file:///${driveLetter}%3A/schema.json`);
|
||||
expect(requestServiceMock).calledWithExactly(`file:///${driveLetter}%3A/schema.json#/definitions/schemaArray`);
|
||||
}
|
||||
else {
|
||||
expect(requestServiceMock).calledWithExactly('file:///schema.json');
|
||||
expect(requestServiceMock).calledWithExactly('file:///schema.json#/definitions/schemaArray');
|
||||
}
|
||||
expect(schema.schema.type).eqls('array');
|
||||
});
|
||||
it('should handle modeline schema comment in the middle of file', () => {
|
||||
const documentContent = `foo:\n bar\n# yaml-language-server: $schema=https://json-schema.org/draft-07/schema#\naa:bbb\n`;
|
||||
const content = `${documentContent}`;
|
||||
const yamlDock = (0, yamlParser07_1.parse)(content);
|
||||
const service = new SchemaService.YAMLSchemaService(requestServiceMock);
|
||||
service.getSchemaForResource('', yamlDock.documents[0]);
|
||||
expect(requestServiceMock).calledOnceWith('https://json-schema.org/draft-07/schema#');
|
||||
});
|
||||
it('should handle modeline schema comment in multiline comments', () => {
|
||||
const documentContent = `foo:\n bar\n#first comment\n# yaml-language-server: $schema=https://json-schema.org/draft-07/schema#\naa:bbb\n`;
|
||||
const content = `${documentContent}`;
|
||||
const yamlDock = (0, yamlParser07_1.parse)(content);
|
||||
const service = new SchemaService.YAMLSchemaService(requestServiceMock);
|
||||
service.getSchemaForResource('', yamlDock.documents[0]);
|
||||
expect(requestServiceMock).calledOnceWith('https://json-schema.org/draft-07/schema#');
|
||||
});
|
||||
it('should handle crd catalog for crd', async () => {
|
||||
const documentContent = 'apiVersion: argoproj.io/v1alpha1\nkind: Application';
|
||||
const content = `${documentContent}`;
|
||||
const yamlDock = (0, yamlParser07_1.parse)(content);
|
||||
const settings = new yamlSettings_1.SettingsState();
|
||||
settings.schemaAssociations = {
|
||||
kubernetes: ['*.yaml'],
|
||||
};
|
||||
settings.kubernetesCRDStoreEnabled = true;
|
||||
requestServiceMock = sandbox.fake.resolves(`
|
||||
{
|
||||
"oneOf": [ {
|
||||
"$ref": "_definitions.json#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhook"
|
||||
}
|
||||
]
|
||||
}
|
||||
`);
|
||||
const service = new SchemaService.YAMLSchemaService(requestServiceMock, undefined, undefined, settings);
|
||||
service.registerExternalSchema(schemaUrls_1.KUBERNETES_SCHEMA_URL, ['*.yaml']);
|
||||
const resolvedeSchema = await service.getSchemaForResource('test.yaml', yamlDock.documents[0]);
|
||||
expect(resolvedeSchema.schema.url).eqls('https://raw.githubusercontent.com/datreeio/CRDs-catalog/main/argoproj.io/application_v1alpha1.json');
|
||||
expect(requestServiceMock).calledWithExactly(schemaUrls_1.KUBERNETES_SCHEMA_URL);
|
||||
expect(requestServiceMock).calledWithExactly('file:///_definitions.json');
|
||||
expect(requestServiceMock).calledWithExactly('https://raw.githubusercontent.com/datreeio/CRDs-catalog/main/argoproj.io/application_v1alpha1.json');
|
||||
expect(requestServiceMock).calledThrice;
|
||||
});
|
||||
it('should handle nonstandard location for OpenShift crd', async () => {
|
||||
const documentContent = `apiVersion: route.openshift.io/v1
|
||||
kind: Route
|
||||
spec:
|
||||
to:
|
||||
kind: Service
|
||||
name: MyFirstService
|
||||
weight: 100`;
|
||||
const content = `${documentContent}`;
|
||||
const yamlDock = (0, yamlParser07_1.parse)(content);
|
||||
const settings = new yamlSettings_1.SettingsState();
|
||||
settings.schemaAssociations = {
|
||||
kubernetes: ['*.yaml'],
|
||||
};
|
||||
settings.kubernetesCRDStoreEnabled = true;
|
||||
requestServiceMock = sandbox.fake.resolves(`
|
||||
{
|
||||
"oneOf": [ {
|
||||
"$ref": "_definitions.json#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhook"
|
||||
}
|
||||
]
|
||||
}
|
||||
`);
|
||||
const service = new SchemaService.YAMLSchemaService(requestServiceMock, undefined, undefined, settings);
|
||||
service.registerExternalSchema(schemaUrls_1.KUBERNETES_SCHEMA_URL, ['*.yaml']);
|
||||
const resolvedeSchema = await service.getSchemaForResource('test.yaml', yamlDock.documents[0]);
|
||||
expect(resolvedeSchema.schema.url).eqls('https://raw.githubusercontent.com/datreeio/CRDs-catalog/main/openshift/v4.15-strict/route_route.openshift.io_v1.json');
|
||||
expect(requestServiceMock).calledWithExactly(schemaUrls_1.KUBERNETES_SCHEMA_URL);
|
||||
expect(requestServiceMock).calledWithExactly('file:///_definitions.json');
|
||||
expect(requestServiceMock).calledWithExactly('https://raw.githubusercontent.com/datreeio/CRDs-catalog/main/openshift/v4.15-strict/route_route.openshift.io_v1.json');
|
||||
expect(requestServiceMock).calledThrice;
|
||||
});
|
||||
it('should not get schema from crd catalog if definition in kubernetes schema', async () => {
|
||||
const documentContent = 'apiVersion: admissionregistration.k8s.io/v1\nkind: MutatingWebhook';
|
||||
const content = `${documentContent}`;
|
||||
const yamlDock = (0, yamlParser07_1.parse)(content);
|
||||
const settings = new yamlSettings_1.SettingsState();
|
||||
settings.schemaAssociations = {
|
||||
kubernetes: ['*.yaml'],
|
||||
};
|
||||
settings.kubernetesCRDStoreEnabled = true;
|
||||
requestServiceMock = sandbox.fake.resolves(`
|
||||
{
|
||||
"oneOf": [ {
|
||||
"$ref": "_definitions.json#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhook"
|
||||
}
|
||||
]
|
||||
}
|
||||
`);
|
||||
const service = new SchemaService.YAMLSchemaService(requestServiceMock, undefined, undefined, settings);
|
||||
service.registerExternalSchema(schemaUrls_1.KUBERNETES_SCHEMA_URL, ['*.yaml']);
|
||||
const resolvedSchema = await service.getSchemaForResource('test.yaml', yamlDock.documents[0]);
|
||||
expect(resolvedSchema.schema.url).eqls(schemaUrls_1.KUBERNETES_SCHEMA_URL);
|
||||
expect(requestServiceMock).calledWithExactly(schemaUrls_1.KUBERNETES_SCHEMA_URL);
|
||||
expect(requestServiceMock).calledWithExactly('file:///_definitions.json');
|
||||
expect(requestServiceMock).calledTwice;
|
||||
});
|
||||
it('should not get schema from crd catalog if definition in kubernetes schema (multiple oneOf)', async () => {
|
||||
const documentContent = 'apiVersion: apps/v1\nkind: Deployment';
|
||||
const content = `${documentContent}`;
|
||||
const yamlDock = (0, yamlParser07_1.parse)(content);
|
||||
const settings = new yamlSettings_1.SettingsState();
|
||||
settings.schemaAssociations = {
|
||||
kubernetes: ['*.yaml'],
|
||||
};
|
||||
settings.kubernetesCRDStoreEnabled = true;
|
||||
requestServiceMock = sandbox.fake.resolves(`
|
||||
{
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "_definitions.json#/definitions/io.k8s.api.apps.v1.Deployment"
|
||||
},
|
||||
{
|
||||
"$ref": "_definitions.json#/definitions/io.k8s.api.apps.v1.DeploymentCondition"
|
||||
}
|
||||
]
|
||||
}
|
||||
`);
|
||||
const service = new SchemaService.YAMLSchemaService(requestServiceMock, undefined, undefined, settings);
|
||||
service.registerExternalSchema(schemaUrls_1.KUBERNETES_SCHEMA_URL, ['*.yaml']);
|
||||
const resolvedSchema = await service.getSchemaForResource('test.yaml', yamlDock.documents[0]);
|
||||
expect(resolvedSchema.schema.url).eqls(schemaUrls_1.KUBERNETES_SCHEMA_URL);
|
||||
expect(requestServiceMock).calledWithExactly(schemaUrls_1.KUBERNETES_SCHEMA_URL);
|
||||
expect(requestServiceMock).calledWithExactly('file:///_definitions.json');
|
||||
expect(requestServiceMock).calledTwice;
|
||||
});
|
||||
});
|
||||
});
|
||||
//# sourceMappingURL=yamlSchemaService.test.js.map
|
||||
Reference in New Issue
Block a user