@kaoto/camel-catalog 0.3.6 → 0.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/citrus-catalog/citrus/4.9.2/citrus-agent-configuration.json +118 -0
- package/dist/citrus-catalog/citrus/4.9.2/citrus-catalog-aggregate-endpoints.json +3237 -0
- package/dist/citrus-catalog/citrus/4.9.2/citrus-catalog-aggregate-functions.json +1069 -0
- package/dist/citrus-catalog/citrus/4.9.2/citrus-catalog-aggregate-test-actions.json +19228 -0
- package/dist/citrus-catalog/citrus/4.9.2/citrus-catalog-aggregate-test-containers.json +873 -0
- package/dist/citrus-catalog/citrus/4.9.2/citrus-catalog-aggregate-validation-matcher.json +464 -0
- package/dist/citrus-catalog/citrus/4.9.2/citrus-testcase.json +13949 -0
- package/dist/citrus-catalog/citrus/4.9.2/citrus-testcase.xsd +2970 -0
- package/dist/citrus-catalog/citrus/4.9.2/index.json +51 -0
- package/dist/citrus-catalog/citrus/citrus-agent-configuration.json +118 -0
- package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-endpoints.json +3237 -0
- package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-functions.json +1069 -0
- package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-test-actions.json +19228 -0
- package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-test-containers.json +873 -0
- package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-validation-matcher.json +464 -0
- package/dist/citrus-catalog/citrus/citrus-testcase.json +13949 -0
- package/dist/citrus-catalog/citrus/citrus-testcase.xsd +2970 -0
- package/dist/citrus-catalog/citrus/index.json +51 -0
- package/dist/citrus-catalog/index.json +15 -0
- package/dist/types/catalog-index.d.ts +2 -2
- package/package.json +8 -6
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema" : "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type" : "object",
|
|
4
|
+
"properties" : {
|
|
5
|
+
"configClass" : {
|
|
6
|
+
"type" : "string",
|
|
7
|
+
"title" : "ConfigClass",
|
|
8
|
+
"description" : "Fully qualified configuration class name loaded as a Java bean configuration."
|
|
9
|
+
},
|
|
10
|
+
"defaultProperties" : {
|
|
11
|
+
"type" : "object",
|
|
12
|
+
"additionalProperties" : {
|
|
13
|
+
"type" : "string",
|
|
14
|
+
"title" : "DefaultProperties",
|
|
15
|
+
"description" : "Sets default properties"
|
|
16
|
+
},
|
|
17
|
+
"title" : "DefaultProperties",
|
|
18
|
+
"description" : "Sets default properties"
|
|
19
|
+
},
|
|
20
|
+
"engine" : {
|
|
21
|
+
"type" : "string",
|
|
22
|
+
"title" : "Engine",
|
|
23
|
+
"description" : "The test engine to use when running tests",
|
|
24
|
+
"default" : "junit5"
|
|
25
|
+
},
|
|
26
|
+
"includes" : {
|
|
27
|
+
"title" : "Includes",
|
|
28
|
+
"description" : "Test name patterns that specify which tests to include in the test run. Used when scanning packages for tests.",
|
|
29
|
+
"type" : "array",
|
|
30
|
+
"items" : {
|
|
31
|
+
"type" : "string",
|
|
32
|
+
"title" : "Includes",
|
|
33
|
+
"description" : "Test name patterns that specify which tests to include in the test run. Used when scanning packages for tests."
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"packages" : {
|
|
37
|
+
"title" : "Packages",
|
|
38
|
+
"description" : "List of package names to search for tests. All tests found in these packages are executed.",
|
|
39
|
+
"type" : "array",
|
|
40
|
+
"items" : {
|
|
41
|
+
"type" : "string",
|
|
42
|
+
"title" : "Packages",
|
|
43
|
+
"description" : "List of package names to search for tests. All tests found in these packages are executed."
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"port" : {
|
|
47
|
+
"type" : "integer",
|
|
48
|
+
"title" : "Port",
|
|
49
|
+
"description" : "The Http port the agent service is listening on.",
|
|
50
|
+
"default" : "4567"
|
|
51
|
+
},
|
|
52
|
+
"reset" : {
|
|
53
|
+
"type" : "boolean",
|
|
54
|
+
"title" : "Reset",
|
|
55
|
+
"description" : "When enabled the Citrus context instance is reset after the test.",
|
|
56
|
+
"default" : "true"
|
|
57
|
+
},
|
|
58
|
+
"skipTests" : {
|
|
59
|
+
"type" : "boolean",
|
|
60
|
+
"title" : "SkipTests",
|
|
61
|
+
"description" : "When enabled no tests are run on application startup."
|
|
62
|
+
},
|
|
63
|
+
"systemExit" : {
|
|
64
|
+
"type" : "boolean",
|
|
65
|
+
"title" : "SystemExit",
|
|
66
|
+
"description" : "When enabled the application exits with an exit code after tests are run."
|
|
67
|
+
},
|
|
68
|
+
"testJar" : {
|
|
69
|
+
"type" : "string",
|
|
70
|
+
"title" : "TestJar",
|
|
71
|
+
"description" : "Set the test jar holding tests to execute. Jar file is used to perform package scans for test cases to run."
|
|
72
|
+
},
|
|
73
|
+
"testSources" : {
|
|
74
|
+
"title" : "TestSources",
|
|
75
|
+
"description" : "List of test sources to run. A test source represents a source code file in one of the supported languages (.java, .xml, .groovy, .yaml, .feature)",
|
|
76
|
+
"type" : "array",
|
|
77
|
+
"items" : {
|
|
78
|
+
"type" : "object",
|
|
79
|
+
"properties" : {
|
|
80
|
+
"filePath" : {
|
|
81
|
+
"type" : "string",
|
|
82
|
+
"title" : "FilePath",
|
|
83
|
+
"description" : "The source file path."
|
|
84
|
+
},
|
|
85
|
+
"name" : {
|
|
86
|
+
"type" : "string",
|
|
87
|
+
"title" : "Name",
|
|
88
|
+
"description" : "The source file name."
|
|
89
|
+
},
|
|
90
|
+
"type" : {
|
|
91
|
+
"type" : "string",
|
|
92
|
+
"title" : "Type",
|
|
93
|
+
"description" : "The test source type."
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"title" : "TestSources",
|
|
97
|
+
"description" : "List of test sources to run. A test source represents a source code file in one of the supported languages (.java, .xml, .groovy, .yaml, .feature)"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"timeToLive" : {
|
|
101
|
+
"type" : "integer",
|
|
102
|
+
"title" : "TimeToLive",
|
|
103
|
+
"description" : "Set time to live for the Citrus application. When set the application terminates automatically when time is over."
|
|
104
|
+
},
|
|
105
|
+
"verbose" : {
|
|
106
|
+
"type" : "boolean",
|
|
107
|
+
"title" : "Verbose",
|
|
108
|
+
"description" : "When enabled the test run prints verbose messages.",
|
|
109
|
+
"default" : "true"
|
|
110
|
+
},
|
|
111
|
+
"workDir" : {
|
|
112
|
+
"type" : "string",
|
|
113
|
+
"title" : "WorkDir",
|
|
114
|
+
"description" : "Set custom working directory. File system based test engines may use this directory to read files from."
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
"required" : [ "engine", "port" ]
|
|
118
|
+
}
|