mirror of
https://github.com/yldio/copilot.git
synced 2024-11-10 21:30:06 +02:00
Switch to updated schema
This commit is contained in:
parent
cf737aa2e7
commit
99fb6f5057
@ -1,155 +1,47 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
|
const Fs = require('fs');
|
||||||
|
const Path = require('path');
|
||||||
const Graphql = require('graphql');
|
const Graphql = require('graphql');
|
||||||
|
|
||||||
|
|
||||||
const internals = {
|
const internals = {
|
||||||
schema: `
|
schema: Fs.readFileSync(Path.join(__dirname, 'schema.gql')).toString()
|
||||||
scalar Object
|
|
||||||
scalar Date
|
|
||||||
|
|
||||||
type Activity {
|
|
||||||
date: Date!
|
|
||||||
type: String!
|
|
||||||
meta: Object
|
|
||||||
}
|
|
||||||
|
|
||||||
type Datacenter {
|
|
||||||
name: String!
|
|
||||||
url: String!
|
|
||||||
}
|
|
||||||
|
|
||||||
input DeploymentCreate {
|
|
||||||
name: String!
|
|
||||||
datacenter: String!
|
|
||||||
}
|
|
||||||
|
|
||||||
input DeploymentUpdate {
|
|
||||||
id: ID!
|
|
||||||
name: String!
|
|
||||||
datacenter: String!
|
|
||||||
}
|
|
||||||
|
|
||||||
type Deployment {
|
|
||||||
id: ID!
|
|
||||||
name: String!
|
|
||||||
datacenter: String!
|
|
||||||
}
|
|
||||||
|
|
||||||
type Manifest {
|
|
||||||
revision: Int!
|
|
||||||
file: Object!
|
|
||||||
}
|
|
||||||
|
|
||||||
input ManifestCreate {
|
|
||||||
file: Object!
|
|
||||||
}
|
|
||||||
|
|
||||||
type Metric {
|
|
||||||
service: String!
|
|
||||||
cpu: Float!
|
|
||||||
memory: Float!
|
|
||||||
network: Float!
|
|
||||||
}
|
|
||||||
|
|
||||||
type Service {
|
|
||||||
name: String!
|
|
||||||
count: Int!
|
|
||||||
}
|
|
||||||
|
|
||||||
input ServiceUpdate {
|
|
||||||
name: String!
|
|
||||||
count: Int!
|
|
||||||
}
|
|
||||||
|
|
||||||
type Mutation {
|
|
||||||
createDeployment(deployment: DeploymentCreate!): Deployment!
|
|
||||||
deleteDeployment(deploymentId: ID!): String
|
|
||||||
updateDeployment(deployment: DeploymentUpdate!): Deployment!
|
|
||||||
createManifest(deploymentId: ID!, manifest: ManifestCreate!): Manifest!
|
|
||||||
updateService(deploymentId: ID!, service: ServiceUpdate!): Service!
|
|
||||||
}
|
|
||||||
|
|
||||||
type Query {
|
|
||||||
getActivities: [Activity]
|
|
||||||
getDatacenters: [Datacenter]
|
|
||||||
getDeployment(id: ID!): Deployment
|
|
||||||
getDeployments: [Deployment]
|
|
||||||
getManifest(deploymentId: ID!, revision: Int!): Manifest
|
|
||||||
getMetrics(deploymentId: ID!): [Metric]
|
|
||||||
getServices(deploymentId: ID!): [Service]
|
|
||||||
}
|
|
||||||
`
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
exports.options = (data) => {
|
exports.options = (data) => {
|
||||||
const schema = Graphql.buildSchema(internals.schema);
|
const schema = Graphql.buildSchema(internals.schema);
|
||||||
|
|
||||||
const createDeployment = function (args) {
|
const getPortal = function (args, request) {
|
||||||
return data.createDeployment(args.deployment);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const deleteDeployment = function (args) {
|
const getDeploymentGroups = function (args, request) {
|
||||||
return data.deleteDeployment(args.deploymentId);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const updateDeployment = function (args) {
|
const getDeploymentGroup = function (args, request) {
|
||||||
return data.updateDeployment(args.deployment);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const createManifest = function (args) {
|
const getServiceScales = function (args, request) {
|
||||||
return data.createManifest(args.deploymentId, args.manifest);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const updateService = function (args) {
|
const getServiceScale = function (args, request) {
|
||||||
return data.updateService(args.deploymentId, args.service);
|
|
||||||
};
|
|
||||||
|
|
||||||
const getActivities = function () {
|
|
||||||
return data.getActivities();
|
|
||||||
};
|
|
||||||
|
|
||||||
const getDatacenters = function () {
|
|
||||||
return data.getDatacenters();
|
|
||||||
};
|
|
||||||
|
|
||||||
const getDeployment = function (args) {
|
|
||||||
return data.getDeployment(args.id);
|
|
||||||
};
|
|
||||||
|
|
||||||
const getDeployments = function () {
|
|
||||||
return data.getDeployments();
|
|
||||||
};
|
|
||||||
|
|
||||||
const getManifest = function (args) {
|
|
||||||
return data.getManifest(args.deploymentId, args.revision);
|
|
||||||
};
|
|
||||||
|
|
||||||
const getMetrics = function (args) {
|
|
||||||
return data.getMetrics(args.deploymentId);
|
|
||||||
};
|
|
||||||
|
|
||||||
const getServices = function (args) {
|
|
||||||
return data.v(args.deploymentId);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
schema,
|
schema,
|
||||||
endpointURL: '/graphql',
|
endpointURL: '/graphql',
|
||||||
rootValue: {
|
rootValue: {
|
||||||
createDeployment,
|
portal: getPortal,
|
||||||
deleteDeployment,
|
deploymentGroups: getDeploymentGroups,
|
||||||
updateDeployment,
|
deploymentGroup: getDeploymentGroup,
|
||||||
createManifest,
|
serviceScales: getServiceScales,
|
||||||
updateService,
|
serviceScale: getServiceScale
|
||||||
getActivities,
|
|
||||||
getDatacenters,
|
|
||||||
getDeployment,
|
|
||||||
getDeployments,
|
|
||||||
getManifest,
|
|
||||||
getMetrics,
|
|
||||||
getServices
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
204
portal-api/lib/models/schema.gql
Normal file
204
portal-api/lib/models/schema.gql
Normal file
@ -0,0 +1,204 @@
|
|||||||
|
|
||||||
|
scalar Date
|
||||||
|
scalar Object
|
||||||
|
|
||||||
|
type Portal {
|
||||||
|
username: String!
|
||||||
|
datacenter: Datacenter!
|
||||||
|
deploymentGroups: [DeploymentGroup]!
|
||||||
|
}
|
||||||
|
|
||||||
|
type DeploymentGroup {
|
||||||
|
uuid: ID!
|
||||||
|
name: String!
|
||||||
|
slug: String!
|
||||||
|
services: [Service]!
|
||||||
|
version: Version!
|
||||||
|
history: [Version]!
|
||||||
|
}
|
||||||
|
|
||||||
|
type ServiceScale {
|
||||||
|
uuid: ID!
|
||||||
|
serviceName: String!
|
||||||
|
replicas: Int!
|
||||||
|
}
|
||||||
|
|
||||||
|
enum ConvergenceActionType {
|
||||||
|
NOOP
|
||||||
|
CREATE
|
||||||
|
RECREATE
|
||||||
|
START
|
||||||
|
}
|
||||||
|
|
||||||
|
type ConvergenceAction {
|
||||||
|
uuid: String!
|
||||||
|
type: ConvergenceActionType!
|
||||||
|
service: String! # service name
|
||||||
|
machines: [String]! # instance machine ids
|
||||||
|
}
|
||||||
|
|
||||||
|
type StateConvergencePlan {
|
||||||
|
uuid: String!
|
||||||
|
running: Boolean!
|
||||||
|
actions: [ConvergenceAction]!
|
||||||
|
}
|
||||||
|
|
||||||
|
type Version {
|
||||||
|
created: Date! # Either Int or define scalar
|
||||||
|
manifest: Manifest!
|
||||||
|
scale: [ServiceScale]!
|
||||||
|
plan: StateConvergencePlan
|
||||||
|
}
|
||||||
|
|
||||||
|
enum ManifestType {
|
||||||
|
COMPOSE
|
||||||
|
MARIPOSA
|
||||||
|
}
|
||||||
|
|
||||||
|
enum ManifestFormat {
|
||||||
|
JSON
|
||||||
|
YAML
|
||||||
|
}
|
||||||
|
|
||||||
|
type Manifest {
|
||||||
|
uuid: String!
|
||||||
|
created: Date!
|
||||||
|
type: ManifestType!
|
||||||
|
format: ManifestFormat!
|
||||||
|
raw: String!
|
||||||
|
obj: Object!
|
||||||
|
}
|
||||||
|
|
||||||
|
# immutable
|
||||||
|
type Service {
|
||||||
|
uuid: String! # unique id for db row
|
||||||
|
hash: String! # unique id for version of service
|
||||||
|
name: String! # human readable name
|
||||||
|
slug: String!
|
||||||
|
instances: [Instance]!
|
||||||
|
# metrics: [MetricType]!
|
||||||
|
currentMetrics: [CurrentMetric]!
|
||||||
|
connections: [String!] # list of serviceUuids
|
||||||
|
parent: ID # parent service uuid
|
||||||
|
package: Package! # we don't have this in current mock data
|
||||||
|
}
|
||||||
|
|
||||||
|
# for metrics max / min (I guess)
|
||||||
|
type Package {
|
||||||
|
uuid: ID!
|
||||||
|
name: String!
|
||||||
|
type: String!
|
||||||
|
memory: Float!
|
||||||
|
disk: Float!
|
||||||
|
swap: Float!
|
||||||
|
lwps: Int!
|
||||||
|
vcpus: Int!
|
||||||
|
version: String!
|
||||||
|
group: String!
|
||||||
|
}
|
||||||
|
|
||||||
|
enum InstanceStatus {
|
||||||
|
CREATED
|
||||||
|
RESTARTING
|
||||||
|
RUNNING
|
||||||
|
PAUSED
|
||||||
|
EXITED
|
||||||
|
DELETED
|
||||||
|
}
|
||||||
|
|
||||||
|
type Instance {
|
||||||
|
uuid: String!
|
||||||
|
name: String!
|
||||||
|
machineId: String!
|
||||||
|
status: InstanceStatus!
|
||||||
|
# metrics: [InstanceMetric]!
|
||||||
|
}
|
||||||
|
|
||||||
|
type Datacenter {
|
||||||
|
uuid: String!
|
||||||
|
# name: String! # Do we have 'official' human readable names?
|
||||||
|
region: String!
|
||||||
|
}
|
||||||
|
|
||||||
|
type InstanceMetric {
|
||||||
|
type: MetricType!
|
||||||
|
data: [MetricData]!
|
||||||
|
}
|
||||||
|
|
||||||
|
type CurrentMetric {
|
||||||
|
name: String!
|
||||||
|
value: Float!
|
||||||
|
measurement: String!
|
||||||
|
}
|
||||||
|
|
||||||
|
type MetricType {
|
||||||
|
uuid: String!
|
||||||
|
name: String!
|
||||||
|
id: String!
|
||||||
|
}
|
||||||
|
|
||||||
|
type MetricData {
|
||||||
|
timestamp: Int!
|
||||||
|
value: Float!
|
||||||
|
}
|
||||||
|
|
||||||
|
# Need to review queries
|
||||||
|
type Query {
|
||||||
|
portal: Portal
|
||||||
|
deploymentGroups: [DeploymentGroup]
|
||||||
|
deploymentGroup(uuid: String, slug: String): DeploymentGroup
|
||||||
|
services(deploymentGroupUuid: String, deploymentGroupSlug: String): [Service]
|
||||||
|
service(uuid: String, slug: String): Service
|
||||||
|
instances(serviceUuid: String, serviceSlug: String): [Instance]
|
||||||
|
instance(uuid: String, machineId: String): Instance
|
||||||
|
metricTypes: [MetricType]
|
||||||
|
metricData(instanceUuid: String!, metricType: String!, from: Date!, to: Date!): [InstanceMetric]!
|
||||||
|
package: Package
|
||||||
|
datacenters: [Datacenter]
|
||||||
|
# tmp test
|
||||||
|
instanceMetric: InstanceMetric!
|
||||||
|
}
|
||||||
|
|
||||||
|
# we probably wont use some of these queries or arguments
|
||||||
|
# but this way we expose the entire db through gql
|
||||||
|
type Query {
|
||||||
|
portal: Portal
|
||||||
|
deploymentGroups(name: String, slug: String): [DeploymentGroup]
|
||||||
|
deploymentGroup(uuid: ID, name: String, slug: String): DeploymentGroup
|
||||||
|
serviceScales(serviceName: String, versionUuid: ID): [ServiceScale]
|
||||||
|
serviceScale(uuid: ID!): ServiceScale
|
||||||
|
convergenceActions(type: ConvergenceActionType, service: String, versionUuid: ID): [ConvergenceAction]
|
||||||
|
convergenceAction(uuid: ID!): ConvergenceAction
|
||||||
|
stateConvergencePlans(running: Boolean, versionUuid: ID): [StateConvergencePlan]
|
||||||
|
stateConvergencePlan(uuid: ID!): StateConvergencePlan
|
||||||
|
versions(manifestUuid: ID, deploymentGroupUuid: ID): [Version]
|
||||||
|
version(uuid: ID, manifestUuid: ID): Version
|
||||||
|
manifests(type: String, deploymentGroupUuid: ID): [Manifest]
|
||||||
|
manifest(uuid: ID!): Manifest
|
||||||
|
services(name: String, slug: String, parentUuid: ID, deploymentGroupUuid: ID, deploymentGroupSlug: String): [Service]
|
||||||
|
service(uuid: ID, hash: ID): Service
|
||||||
|
packages(name: String, type: String, memory: Int, disk: Int, swap: Int, lwps: Int, vcpus: Int, version: String, group: String): [Package]
|
||||||
|
package(uuid: ID!): Package
|
||||||
|
instances(name: String!, machineId: ID, status: InstanceStatus, serviceUuid: ID, serviceSlug: String, deploymentGroupUuid: ID, deploymentGroupSlug: String): [Instance]
|
||||||
|
instance(uuid: ID!): Instance
|
||||||
|
datacenter(uuid: ID, region: String): Datacenter
|
||||||
|
}
|
||||||
|
|
||||||
|
type Mutation {
|
||||||
|
createDeploymentGroup(name: String!) : DeploymentGroup
|
||||||
|
updateDeploymentGroup(uuid: ID!, name: String!) : DeploymentGroup
|
||||||
|
|
||||||
|
provisionManifest(deploymentGroupUuid: ID!, type: ManifestType!, format: ManifestFormat!, raw: String!) : Version
|
||||||
|
scale(service: ID!, replicas: Int!) : Version
|
||||||
|
|
||||||
|
stopServices(uuids: [ID]!) : [Service]
|
||||||
|
startServices(uuids: [ID]!) : [Service]
|
||||||
|
restartServices(uuids: [ID]!) : [Service]
|
||||||
|
deleteServices(uuids: [ID]!) : [Service]
|
||||||
|
|
||||||
|
stopInstances(uuids: [ID]!) : [Instance]
|
||||||
|
startInstances(uuids: [ID]!) : [Instance]
|
||||||
|
restartInstances(uuids: [ID]!) : [Instance]
|
||||||
|
|
||||||
|
# reprovision() ???
|
||||||
|
}
|
@ -341,19 +341,19 @@ describe('services', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
describe.skip('graphql', () => {
|
describe('graphql', () => {
|
||||||
it('route exists', (done) => {
|
it('route exists', (done) => {
|
||||||
const server = new Hapi.Server();
|
const server = new Hapi.Server();
|
||||||
server.connection();
|
server.connection();
|
||||||
server.register(internals.register, (err) => {
|
server.register(internals.register, (err) => {
|
||||||
expect(err).to.not.exist();
|
expect(err).to.not.exist();
|
||||||
const url = '/graphql?query=%7B%0A%20%20getDeployment(id%3A%201)%20%7B%0A%20%20%20%20id%0A%20%20%7D%0A%7D';
|
const url = '/graphql?query=%7B%0A%20%20deploymentGroups(name%3A%22hi%22%2C%20slug%3A%20%22hi%22)%20%7B%0A%20%20%20%20id%0A%20%20%7D%0A%7D';
|
||||||
|
|
||||||
server.inject({ method: 'GET', url }, (res) => {
|
server.inject({ method: 'GET', url }, (res) => {
|
||||||
expect(res.statusCode).to.equal(200);
|
expect(res.statusCode).to.equal(200);
|
||||||
const result = JSON.parse(res.result);
|
const result = JSON.parse(res.result);
|
||||||
expect(result.data).to.exist();
|
expect(result.data).to.exist();
|
||||||
expect(result.data.getDeployment).to.exist();
|
expect(result.data.deploymentGroups).to.be.null();
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user