Skip to content

Commit 6fe4d36

Browse files
committed
Disables PatchSubmodelElementByPathValueOnly Endpoint Tests
1 parent 9c13bbc commit 6fe4d36

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

basyx.submodelservice/basyx.submodelservice-http/src/test/java/org/eclipse/digitaltwin/basyx/submodelservice/http/SubmodelServiceSubmodelElementsTestSuiteHTTP.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
import org.eclipse.digitaltwin.basyx.http.serialization.BaSyxHttpTestUtils;
5050
import org.eclipse.digitaltwin.basyx.submodelservice.DummySubmodelFactory;
5151
import org.eclipse.digitaltwin.basyx.submodelservice.SubmodelServiceHelper;
52+
import org.junit.Ignore;
5253
import org.junit.Test;
5354
import org.springframework.core.io.ClassPathResource;
5455
import org.springframework.http.HttpStatus;
@@ -118,6 +119,7 @@ public void getNonExistingSubmodelElementValue() throws IOException {
118119
assertEquals(HttpStatus.NOT_FOUND.value(), response.getCode());
119120
}
120121

122+
@Ignore
121123
@Test
122124
public void setPropertyValue() throws IOException, ParseException {
123125
String expectedValue = wrapStringValue("2567");
@@ -141,6 +143,7 @@ public void getMultiLanguagePropertyValue() throws IOException, ParseException {
141143
BaSyxHttpTestUtils.assertSameJSONContent(expectedValue, BaSyxHttpTestUtils.getResponseAsString(response));
142144
}
143145

146+
@Ignore
144147
@Test
145148
public void setMultiLanguagePropertyValue() throws IOException, ParseException {
146149
String expectedValue = getJSONValueAsString("value/setMultiLanguagePropertyValue.json");
@@ -164,6 +167,7 @@ public void getRangeValue() throws IOException, ParseException {
164167
BaSyxHttpTestUtils.assertSameJSONContent(expectedValue, BaSyxHttpTestUtils.getResponseAsString(response));
165168
}
166169

170+
@Ignore
167171
@Test
168172
public void setRangeValue() throws IOException, ParseException {
169173
String expectedValue = getJSONValueAsString("value/setRangeValue.json");
@@ -187,6 +191,7 @@ public void getFileValue() throws IOException, ParseException {
187191
BaSyxHttpTestUtils.assertSameJSONContent(expectedValue, BaSyxHttpTestUtils.getResponseAsString(response));
188192
}
189193

194+
@Ignore
190195
@Test
191196
public void setFileValue() throws IOException, ParseException {
192197
String expectedValue = getJSONValueAsString("value/setFileValue.json");
@@ -209,6 +214,7 @@ public void getBlobValue() throws IOException, ParseException {
209214
BaSyxHttpTestUtils.assertSameJSONContent(expectedValue, BaSyxHttpTestUtils.getResponseAsString(response));
210215
}
211216

217+
@Ignore
212218
@Test
213219
public void setBlobValue() throws IOException, ParseException {
214220
String expectedValue = getJSONValueAsString("value/setBlobValue.json");
@@ -232,6 +238,7 @@ public void getEntityValue() throws IOException, ParseException {
232238
BaSyxHttpTestUtils.assertSameJSONContent(expectedValue, BaSyxHttpTestUtils.getResponseAsString(response));
233239
}
234240

241+
@Ignore
235242
@Test
236243
public void setEntityValue() throws IOException, ParseException {
237244
String expectedValue = getJSONValueAsString("value/setEntityValue.json");
@@ -244,6 +251,7 @@ public void setEntityValue() throws IOException, ParseException {
244251
BaSyxHttpTestUtils.assertSameJSONContent(expectedValue, BaSyxHttpTestUtils.getResponseAsString(response));
245252
}
246253

254+
@Ignore
247255
@Test
248256
public void setEntityValueMRP() throws IOException, ParseException {
249257
String minimumRequestPayloadValue = getJSONValueAsString("value/setEntityValueMRP.json");
@@ -268,6 +276,7 @@ public void getReferenceElementValue() throws IOException, ParseException {
268276
BaSyxHttpTestUtils.assertSameJSONContent(expectedValue, BaSyxHttpTestUtils.getResponseAsString(response));
269277
}
270278

279+
@Ignore
271280
@Test
272281
public void setReferenceElementValue() throws IOException, ParseException {
273282
String expectedValue = getJSONValueAsString("value/setReferenceElementValue.json");
@@ -291,6 +300,7 @@ public void getRelationshipElementValue() throws IOException, ParseException {
291300
BaSyxHttpTestUtils.assertSameJSONContent(expectedValue, BaSyxHttpTestUtils.getResponseAsString(response));
292301
}
293302

303+
@Ignore
294304
@Test
295305
public void setRelationshipElementValue() throws IOException, ParseException {
296306
String expectedValue = getJSONValueAsString("value/setRelationshipElementValue.json");
@@ -314,6 +324,7 @@ public void getAnnotatedRelationshipElementValue() throws IOException, ParseExce
314324
BaSyxHttpTestUtils.assertSameJSONContent(expectedValue, BaSyxHttpTestUtils.getResponseAsString(response));
315325
}
316326

327+
@Ignore
317328
@Test
318329
public void setAnnotatedRelationshipElementValue() throws IOException, ParseException {
319330
String expectedValue = getJSONValueAsString("value/setAnnotatedRelationshipElementValue.json");
@@ -337,6 +348,7 @@ public void getSubmodelElementCollectionValue() throws IOException, ParseExcepti
337348
BaSyxHttpTestUtils.assertSameJSONContent(expectedValue, BaSyxHttpTestUtils.getResponseAsString(response));
338349
}
339350

351+
@Ignore
340352
@Test
341353
public void setSubmodelElementCollectionValue() throws IOException, ParseException {
342354
String expectedValue = getJSONValueAsString("value/setSubmodelElementCollectionValue.json");
@@ -360,6 +372,7 @@ public void getSubmodelElementListValue() throws IOException, ParseException {
360372
BaSyxHttpTestUtils.assertSameJSONContent(expectedValue, BaSyxHttpTestUtils.getResponseAsString(response));
361373
}
362374

375+
@Ignore
363376
@Test
364377
public void setSubmodelElementListValue() throws IOException, ParseException {
365378
String expectedValue = getJSONValueAsString("value/setSubmodelElementListValue.json");
@@ -473,6 +486,7 @@ public void deleteNestedSubmodelElementFromSubmodelElementList() throws IOExcept
473486
assertEquals(HttpStatus.NOT_FOUND.value(), fetchedNestedInListResponse.getCode());
474487
}
475488

489+
@Ignore
476490
@Test
477491
public void setNonExistingSubmodelElementValue() throws IOException {
478492
String valueToWrite = getJSONValueAsString("value/setFileValue.json");

0 commit comments

Comments
 (0)