1 /* Copyright (c) 2019 AT&T Intellectual Property. #
\r
3 # Licensed under the Apache License, Version 2.0 (the "License"); #
\r
4 # you may not use this file except in compliance with the License. #
\r
5 # You may obtain a copy of the License at #
\r
7 # http://www.apache.org/licenses/LICENSE-2.0 #
\r
9 # Unless required by applicable law or agreed to in writing, software #
\r
10 # distributed under the License is distributed on an "AS IS" BASIS, #
\r
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
\r
12 # See the License for the specific language governing permissions and #
\r
13 # limitations under the License. #
\r
14 ##############################################################################*/
\r
18 module.exports = function (app) {
\r
19 const mongooseClient = app.get('mongooseClient');
\r
20 const { Schema } = mongooseClient;
\r
21 const testDefinitions = new Schema({
\r
22 testName: { type: String, required: true },
\r
23 testDescription: { type: String, required: true },
\r
24 processDefinitionKey: { type: String, unique: true },
\r
25 creatorId: { type: Schema.Types.ObjectId, ref: 'users', required: true },
\r
26 groupId: { type: Schema.Types.ObjectId, ref: 'groups', required: true },
\r
27 bpmnInstances: [new Schema({
\r
28 processDefinitionId: { type: String },
\r
29 deploymentId: { type: String },
\r
30 version: { type: String, required: true },
\r
31 bpmnFileId: { type: Schema.Types.ObjectId, ref: 'files', required: true },
\r
32 resourceFileId: {type: Schema.Types.ObjectId, ref: 'files' },
\r
33 isDeployed: { type: Boolean, required: true, default: false },
\r
34 testHeads: [new Schema({
\r
35 testHeadId: { type: Schema.Types.ObjectId, ref: 'testHeads' },
\r
36 bpmnVthTaskId: { type: String },
\r
37 label: { type: String, default: '' }
\r
38 }, { _id: false })],
\r
39 pflos: [new Schema({
\r
40 bpmnPfloTaskId: { type: String },
\r
41 label: { type: String, default: '' }
\r
42 }, { _id: false })],
\r
43 testDataTemplate: { type: Object, default: {} },
\r
44 updatedBy: { type: Schema.Types.ObjectId, ref: 'users'},
\r
45 createdBy: { type: Schema.Types.ObjectId, ref: 'users'}
\r
46 }, { _id: false, timestamps: true })],
\r
47 disabled: {type: Boolean, default: false},
\r
48 updatedBy: { type: Schema.Types.ObjectId, ref: 'users'},
\r
49 createdBy: { type: Schema.Types.ObjectId, ref: 'users'}
\r
57 return mongooseClient.model('testDefinitions', testDefinitions, 'testDefinitions');
\r