use of com.axibase.tsd.api.model.entitygroup.EntityGroup in project atsd-api-test by axibase.
the class EntityGroupCreateOrReplaceTest method testNameContainsWhitespace.
@Issue("1278")
@Test
public void testNameContainsWhitespace() throws Exception {
EntityGroup entityGroup = new EntityGroup("urlencodecreateReplace entitygroup1");
assertUrlEncodePathHandledCorrectly(entityGroup);
}
use of com.axibase.tsd.api.model.entitygroup.EntityGroup in project atsd-api-test by axibase.
the class EntityGroupCreateOrReplaceTest method testNameContainsSlash.
@Issue("1278")
@Test
public void testNameContainsSlash() throws Exception {
EntityGroup entityGroup = new EntityGroup("urlencodecreateReplace/entitygroup2");
assertUrlEncodePathHandledCorrectly(entityGroup);
}
use of com.axibase.tsd.api.model.entitygroup.EntityGroup in project atsd-api-test by axibase.
the class EntityGroupEntitiesAddTest method testNameContainsCyrillic.
@Issue("1278")
@Test
public void testNameContainsCyrillic() throws Exception {
EntityGroup entityGroup = new EntityGroup("urlencodeaddentitiesйёentitygroup3");
assertUrlEncodePathHandledCorrectly(entityGroup);
}
use of com.axibase.tsd.api.model.entitygroup.EntityGroup in project atsd-api-test by axibase.
the class EntityGroupEntitiesAddTest method testNameContainsWhitespace.
@Issue("1278")
@Test
public void testNameContainsWhitespace() throws Exception {
EntityGroup entityGroup = new EntityGroup("urlencodeaddentities entitygroup1");
assertUrlEncodePathHandledCorrectly(entityGroup);
}
use of com.axibase.tsd.api.model.entitygroup.EntityGroup in project atsd-api-test by axibase.
the class EntityGroupEntitiesGetTest method testNameContainsSlash.
@Issue("1278")
@Test
public void testNameContainsSlash() throws Exception {
EntityGroup entityGroup = new EntityGroup("urlencodegetentities/entitygroup2");
assertUrlEncodePathHandledCorrectly(entityGroup);
}
Aggregations