@@ -85,6 +85,7 @@ describe('POST /instance/:instanceId/cli/:uuid/send-cluster-command', () => {
85
85
name : 'Should create string' ,
86
86
data : {
87
87
command : `set ${ constants . TEST_STRING_KEY_1 } ${ constants . TEST_STRING_VALUE_1 } ` ,
88
+ outputFormat : 'TEXT' ,
88
89
role : 'ALL' ,
89
90
} ,
90
91
responseSchema,
@@ -99,6 +100,7 @@ describe('POST /instance/:instanceId/cli/:uuid/send-cluster-command', () => {
99
100
name : 'Should get string' ,
100
101
data : {
101
102
command : `get ${ constants . TEST_STRING_KEY_1 } ` ,
103
+ outputFormat : 'TEXT' ,
102
104
role : 'ALL' ,
103
105
} ,
104
106
responseSchema,
@@ -111,6 +113,7 @@ describe('POST /instance/:instanceId/cli/:uuid/send-cluster-command', () => {
111
113
name : 'Should remove string' ,
112
114
data : {
113
115
command : `del ${ constants . TEST_STRING_KEY_1 } ` ,
116
+ outputFormat : 'TEXT' ,
114
117
role : 'ALL' ,
115
118
} ,
116
119
responseSchema,
@@ -134,6 +137,7 @@ describe('POST /instance/:instanceId/cli/:uuid/send-cluster-command', () => {
134
137
name : 'Should create string' ,
135
138
data : {
136
139
command : `set ${ constants . TEST_STRING_KEY_1 } ${ constants . TEST_STRING_VALUE_1 } ` ,
140
+ outputFormat : 'TEXT' ,
137
141
role : 'ALL' ,
138
142
nodeOptions
139
143
} ,
@@ -152,6 +156,7 @@ describe('POST /instance/:instanceId/cli/:uuid/send-cluster-command', () => {
152
156
name : 'Should get string' ,
153
157
data : {
154
158
command : `get ${ constants . TEST_STRING_KEY_1 } ` ,
159
+ outputFormat : 'TEXT' ,
155
160
role : 'ALL' ,
156
161
nodeOptions
157
162
} ,
@@ -165,6 +170,7 @@ describe('POST /instance/:instanceId/cli/:uuid/send-cluster-command', () => {
165
170
name : 'Should remove string' ,
166
171
data : {
167
172
command : `del ${ constants . TEST_STRING_KEY_1 } ` ,
173
+ outputFormat : 'TEXT' ,
168
174
role : 'ALL' ,
169
175
nodeOptions
170
176
} ,
@@ -259,6 +265,7 @@ describe('POST /instance/:instanceId/cli/:uuid/send-cluster-command', () => {
259
265
name : `Should create string with redirection if needed (${ node . host } :${ node . port } )` ,
260
266
data : {
261
267
command : `set ${ constants . TEST_STRING_KEY_1 } ${ node . host } ` ,
268
+ outputFormat : 'TEXT' ,
262
269
role : 'ALL' ,
263
270
nodeOptions : {
264
271
host : node . host ,
0 commit comments