Harmonised test descriptions for mgmt. API

This commit is contained in:
Kai Zimmermann
2016-02-22 17:21:59 +01:00
parent 94db219bcb
commit 22fb4bcb13
12 changed files with 83 additions and 46 deletions

View File

@@ -47,7 +47,6 @@ import org.eclipse.hawkbit.repository.model.Target;
import org.json.JSONArray; import org.json.JSONArray;
import org.json.JSONException; import org.json.JSONException;
import org.json.JSONObject; import org.json.JSONObject;
import org.junit.Ignore;
import org.junit.Test; import org.junit.Test;
import org.springframework.context.annotation.Description; import org.springframework.context.annotation.Description;
import org.springframework.http.MediaType; import org.springframework.http.MediaType;
@@ -59,15 +58,8 @@ import com.jayway.jsonpath.JsonPath;
import ru.yandex.qatools.allure.annotations.Features; import ru.yandex.qatools.allure.annotations.Features;
import ru.yandex.qatools.allure.annotations.Stories; import ru.yandex.qatools.allure.annotations.Stories;
/** @Features("Component Tests - Management API")
*
*
*
*/
@Features("Component Tests - Management RESTful API")
@Stories("Distribution Set Resource") @Stories("Distribution Set Resource")
// TODO: fully document tests -> @Description for long text and reasonable
// method name as short text
public class DistributionSetResourceTest extends AbstractIntegrationTest { public class DistributionSetResourceTest extends AbstractIntegrationTest {
@Test @Test
@@ -235,6 +227,7 @@ public class DistributionSetResourceTest extends AbstractIntegrationTest {
} }
@Test @Test
@Description("Ensures that multi target assignment through API is reflected by the repository.")
public void assignMultipleTargetsToDistributionSet() throws Exception { public void assignMultipleTargetsToDistributionSet() throws Exception {
// prepare distribution set // prepare distribution set
final Set<DistributionSet> createDistributionSetsAlphabetical = createDistributionSetsAlphabetical(1); final Set<DistributionSet> createDistributionSetsAlphabetical = createDistributionSetsAlphabetical(1);
@@ -255,9 +248,13 @@ public class DistributionSetResourceTest extends AbstractIntegrationTest {
.andExpect(status().isOk()).andExpect(jsonPath("$.assigned", equalTo(knownTargetIds.length - 1))) .andExpect(status().isOk()).andExpect(jsonPath("$.assigned", equalTo(knownTargetIds.length - 1)))
.andExpect(jsonPath("$.alreadyAssigned", equalTo(1))) .andExpect(jsonPath("$.alreadyAssigned", equalTo(1)))
.andExpect(jsonPath("$.total", equalTo(knownTargetIds.length))); .andExpect(jsonPath("$.total", equalTo(knownTargetIds.length)));
assertThat(targetManagement.findTargetByAssignedDistributionSet(createdDs.getId(), pageReq).getContent())
.as("Five targets in repository have DS assigned").hasSize(5);
} }
@Test @Test
@Description("Ensures that assigned targets of DS are returned as reflected by the repository.")
public void getAssignedTargetsOfDistributionSet() throws Exception { public void getAssignedTargetsOfDistributionSet() throws Exception {
// prepare distribution set // prepare distribution set
final String knownTargetId = "knownTargetId1"; final String knownTargetId = "knownTargetId1";
@@ -273,6 +270,7 @@ public class DistributionSetResourceTest extends AbstractIntegrationTest {
} }
@Test @Test
@Description("Ensures that assigned targets of DS are returned as persisted in the repository.")
public void getAssignedTargetsOfDistributionSetIsEmpty() throws Exception { public void getAssignedTargetsOfDistributionSetIsEmpty() throws Exception {
final Set<DistributionSet> createDistributionSetsAlphabetical = createDistributionSetsAlphabetical(1); final Set<DistributionSet> createDistributionSetsAlphabetical = createDistributionSetsAlphabetical(1);
final DistributionSet createdDs = createDistributionSetsAlphabetical.iterator().next(); final DistributionSet createdDs = createDistributionSetsAlphabetical.iterator().next();
@@ -283,6 +281,7 @@ public class DistributionSetResourceTest extends AbstractIntegrationTest {
} }
@Test @Test
@Description("Ensures that installed targets of DS are returned as persisted in the repository.")
public void getInstalledTargetsOfDistributionSet() throws Exception { public void getInstalledTargetsOfDistributionSet() throws Exception {
// prepare distribution set // prepare distribution set
final String knownTargetId = "knownTargetId1"; final String knownTargetId = "knownTargetId1";
@@ -305,46 +304,50 @@ public class DistributionSetResourceTest extends AbstractIntegrationTest {
} }
@Test @Test
@Description("Ensures that DS in repository are listed with proper paging properties.")
public void getDistributionSetsWithoutAddtionalRequestParameters() throws Exception { public void getDistributionSetsWithoutAddtionalRequestParameters() throws Exception {
final int modules = 5; final int sets = 5;
createDistributionSetsAlphabetical(modules); createDistributionSetsAlphabetical(sets);
mvc.perform(get(RestConstants.DISTRIBUTIONSET_V1_REQUEST_MAPPING)).andDo(MockMvcResultPrinter.print()) mvc.perform(get(RestConstants.DISTRIBUTIONSET_V1_REQUEST_MAPPING)).andDo(MockMvcResultPrinter.print())
.andExpect(status().isOk()) .andExpect(status().isOk())
.andExpect(jsonPath(TargetResourceTest.JSON_PATH_PAGED_LIST_TOTAL, equalTo(modules))) .andExpect(jsonPath(TargetResourceTest.JSON_PATH_PAGED_LIST_TOTAL, equalTo(sets)))
.andExpect(jsonPath(TargetResourceTest.JSON_PATH_PAGED_LIST_SIZE, equalTo(modules))) .andExpect(jsonPath(TargetResourceTest.JSON_PATH_PAGED_LIST_SIZE, equalTo(sets)))
.andExpect(jsonPath(TargetResourceTest.JSON_PATH_PAGED_LIST_CONTENT, hasSize(modules))); .andExpect(jsonPath(TargetResourceTest.JSON_PATH_PAGED_LIST_CONTENT, hasSize(sets)));
} }
@Test @Test
@Description("Ensures that DS in repository are listed with proper paging results with paging limit parameter.")
public void getDistributionSetsWithPagingLimitRequestParameter() throws Exception { public void getDistributionSetsWithPagingLimitRequestParameter() throws Exception {
final int modules = 5; final int sets = 5;
final int limitSize = 1; final int limitSize = 1;
createDistributionSetsAlphabetical(modules); createDistributionSetsAlphabetical(sets);
mvc.perform(get(RestConstants.DISTRIBUTIONSET_V1_REQUEST_MAPPING) mvc.perform(get(RestConstants.DISTRIBUTIONSET_V1_REQUEST_MAPPING)
.param(RestConstants.REQUEST_PARAMETER_PAGING_LIMIT, String.valueOf(limitSize))) .param(RestConstants.REQUEST_PARAMETER_PAGING_LIMIT, String.valueOf(limitSize)))
.andDo(MockMvcResultPrinter.print()).andExpect(status().isOk()) .andDo(MockMvcResultPrinter.print()).andExpect(status().isOk())
.andExpect(jsonPath(TargetResourceTest.JSON_PATH_PAGED_LIST_TOTAL, equalTo(modules))) .andExpect(jsonPath(TargetResourceTest.JSON_PATH_PAGED_LIST_TOTAL, equalTo(sets)))
.andExpect(jsonPath(TargetResourceTest.JSON_PATH_PAGED_LIST_SIZE, equalTo(limitSize))) .andExpect(jsonPath(TargetResourceTest.JSON_PATH_PAGED_LIST_SIZE, equalTo(limitSize)))
.andExpect(jsonPath(TargetResourceTest.JSON_PATH_PAGED_LIST_CONTENT, hasSize(limitSize))); .andExpect(jsonPath(TargetResourceTest.JSON_PATH_PAGED_LIST_CONTENT, hasSize(limitSize)));
} }
@Test @Test
@Description("Ensures that DS in repository are listed with proper paging results with paging limit and offset parameter.")
public void getDistributionSetsWithPagingLimitAndOffsetRequestParameter() throws Exception { public void getDistributionSetsWithPagingLimitAndOffsetRequestParameter() throws Exception {
final int modules = 5; final int sets = 5;
final int offsetParam = 2; final int offsetParam = 2;
final int expectedSize = modules - offsetParam; final int expectedSize = sets - offsetParam;
createDistributionSetsAlphabetical(modules); createDistributionSetsAlphabetical(sets);
mvc.perform(get(RestConstants.DISTRIBUTIONSET_V1_REQUEST_MAPPING) mvc.perform(get(RestConstants.DISTRIBUTIONSET_V1_REQUEST_MAPPING)
.param(RestConstants.REQUEST_PARAMETER_PAGING_OFFSET, String.valueOf(offsetParam)) .param(RestConstants.REQUEST_PARAMETER_PAGING_OFFSET, String.valueOf(offsetParam))
.param(RestConstants.REQUEST_PARAMETER_PAGING_LIMIT, String.valueOf(modules))) .param(RestConstants.REQUEST_PARAMETER_PAGING_LIMIT, String.valueOf(sets)))
.andDo(MockMvcResultPrinter.print()).andExpect(status().isOk()) .andDo(MockMvcResultPrinter.print()).andExpect(status().isOk())
.andExpect(jsonPath(TargetResourceTest.JSON_PATH_PAGED_LIST_TOTAL, equalTo(modules))) .andExpect(jsonPath(TargetResourceTest.JSON_PATH_PAGED_LIST_TOTAL, equalTo(sets)))
.andExpect(jsonPath(TargetResourceTest.JSON_PATH_PAGED_LIST_SIZE, equalTo(expectedSize))) .andExpect(jsonPath(TargetResourceTest.JSON_PATH_PAGED_LIST_SIZE, equalTo(expectedSize)))
.andExpect(jsonPath(TargetResourceTest.JSON_PATH_PAGED_LIST_CONTENT, hasSize(expectedSize))); .andExpect(jsonPath(TargetResourceTest.JSON_PATH_PAGED_LIST_CONTENT, hasSize(expectedSize)));
} }
@Test @Test
@WithUser(principal = "uploadTester", allSpPermissions = true) @WithUser(principal = "uploadTester", allSpPermissions = true)
@Description("Ensures that multiple DS requested are listed with expected payload.")
public void getDistributionSets() throws Exception { public void getDistributionSets() throws Exception {
// prepare test data // prepare test data
assertThat(distributionSetManagement.findDistributionSetsAll(pageReq, false, true)).hasSize(0); assertThat(distributionSetManagement.findDistributionSetsAll(pageReq, false, true)).hasSize(0);
@@ -389,6 +392,7 @@ public class DistributionSetResourceTest extends AbstractIntegrationTest {
@Test @Test
@WithUser(principal = "uploadTester", allSpPermissions = true) @WithUser(principal = "uploadTester", allSpPermissions = true)
@Description("Ensures that single DS requested by ID is listed with expected payload.")
public void getDistributionSet() throws Exception { public void getDistributionSet() throws Exception {
final DistributionSet set = createTestDistributionSet(softwareManagement, distributionSetManagement); final DistributionSet set = createTestDistributionSet(softwareManagement, distributionSetManagement);
@@ -420,6 +424,7 @@ public class DistributionSetResourceTest extends AbstractIntegrationTest {
@Test @Test
@WithUser(principal = "uploadTester", allSpPermissions = true) @WithUser(principal = "uploadTester", allSpPermissions = true)
@Description("Ensures that multipe DS posted to API are created in the repository.")
public void createDistributionSets() throws JSONException, Exception { public void createDistributionSets() throws JSONException, Exception {
assertThat(distributionSetManagement.findDistributionSetsAll(pageReq, false, true)).hasSize(0); assertThat(distributionSetManagement.findDistributionSetsAll(pageReq, false, true)).hasSize(0);
@@ -534,7 +539,8 @@ public class DistributionSetResourceTest extends AbstractIntegrationTest {
} }
@Test @Test
public void testDeleteUnassignedistributionSet() throws Exception { @Description("Ensures that DS deletion request to API is reflected by the repository.")
public void deleteUnassignedistributionSet() throws Exception {
// prepare test data // prepare test data
assertThat(distributionSetManagement.findDistributionSetsAll(pageReq, false, true)).hasSize(0); assertThat(distributionSetManagement.findDistributionSetsAll(pageReq, false, true)).hasSize(0);
@@ -553,7 +559,8 @@ public class DistributionSetResourceTest extends AbstractIntegrationTest {
} }
@Test @Test
public void testDeleteAssignedDistributionSet() throws Exception { @Description("Ensures that assigned DS deletion request to API is reflected by the repository by means of deleted flag set.")
public void deleteAssignedDistributionSet() throws Exception {
// prepare test data // prepare test data
assertThat(distributionSetManagement.findDistributionSetsAll(pageReq, false, true)).hasSize(0); assertThat(distributionSetManagement.findDistributionSetsAll(pageReq, false, true)).hasSize(0);
@@ -574,6 +581,7 @@ public class DistributionSetResourceTest extends AbstractIntegrationTest {
} }
@Test @Test
@Description("Ensures that DS property update request to API is reflected by the repository.")
public void updateDistributionSet() throws Exception { public void updateDistributionSet() throws Exception {
// prepare test data // prepare test data
@@ -601,6 +609,7 @@ public class DistributionSetResourceTest extends AbstractIntegrationTest {
} }
@Test @Test
@Description("Ensures that the server reacts properly to invalid requests (URI, Media Type, Methods) with correct reponses.")
public void invalidRequestsOnDistributionSetsResource() throws Exception { public void invalidRequestsOnDistributionSetsResource() throws Exception {
final DistributionSet set = TestDataUtil.generateDistributionSet("one", softwareManagement, final DistributionSet set = TestDataUtil.generateDistributionSet("one", softwareManagement,
distributionSetManagement); distributionSetManagement);
@@ -642,6 +651,7 @@ public class DistributionSetResourceTest extends AbstractIntegrationTest {
} }
@Test @Test
@Description("Ensures that the metadata creation through API is reflected by the repository.")
public void createMetadata() throws Exception { public void createMetadata() throws Exception {
final DistributionSet testDS = TestDataUtil.generateDistributionSet("one", softwareManagement, final DistributionSet testDS = TestDataUtil.generateDistributionSet("one", softwareManagement,
distributionSetManagement); distributionSetManagement);
@@ -674,6 +684,7 @@ public class DistributionSetResourceTest extends AbstractIntegrationTest {
} }
@Test @Test
@Description("Ensures that a metadata update through API is reflected by the repository.")
public void updateMetadata() throws Exception { public void updateMetadata() throws Exception {
// prepare and create metadata for update // prepare and create metadata for update
final String knownKey = "knownKey"; final String knownKey = "knownKey";
@@ -700,6 +711,7 @@ public class DistributionSetResourceTest extends AbstractIntegrationTest {
} }
@Test @Test
@Description("Ensures that a metadata entry deletion through API is reflected by the repository.")
public void deleteMetadata() throws Exception { public void deleteMetadata() throws Exception {
// prepare and create metadata for deletion // prepare and create metadata for deletion
final String knownKey = "knownKey"; final String knownKey = "knownKey";
@@ -722,6 +734,7 @@ public class DistributionSetResourceTest extends AbstractIntegrationTest {
} }
@Test @Test
@Description("Ensures that a metadata entry selection through API reflectes the repository content.")
public void getSingleMetadata() throws Exception { public void getSingleMetadata() throws Exception {
// prepare and create metadata // prepare and create metadata
final String knownKey = "knownKey"; final String knownKey = "knownKey";
@@ -737,6 +750,7 @@ public class DistributionSetResourceTest extends AbstractIntegrationTest {
} }
@Test @Test
@Description("Ensures that a metadata entry paged list selection through API reflectes the repository content.")
public void getPagedListofMetadata() throws Exception { public void getPagedListofMetadata() throws Exception {
final int totalMetadata = 10; final int totalMetadata = 10;
@@ -760,6 +774,7 @@ public class DistributionSetResourceTest extends AbstractIntegrationTest {
} }
@Test @Test
@Description("Ensures that a DS search with query parameters returns the expected result.")
public void searchDistributionSetRsql() throws Exception { public void searchDistributionSetRsql() throws Exception {
final String dsSuffix = "test"; final String dsSuffix = "test";
final int amount = 10; final int amount = 10;
@@ -776,11 +791,13 @@ public class DistributionSetResourceTest extends AbstractIntegrationTest {
} }
@Ignore
@Test @Test
@Description("Ensures that a DS search with complete==true parameter returns only DS that are actually completely filled with mandatory modules.")
public void filterDistributionSetComplete() throws Exception { public void filterDistributionSetComplete() throws Exception {
final int amount = 10; final int amount = 10;
TestDataUtil.generateDistributionSets(amount, softwareManagement, distributionSetManagement); TestDataUtil.generateDistributionSets(amount, softwareManagement, distributionSetManagement);
distributionSetManagement.createDistributionSet(new DistributionSet("incomplete", "2", "incomplete",
distributionSetManagement.findDistributionSetTypeByKey("ecl_os"), null));
final String rsqlFindLikeDs1OrDs2 = "complete==" + Boolean.TRUE; final String rsqlFindLikeDs1OrDs2 = "complete==" + Boolean.TRUE;
@@ -790,6 +807,7 @@ public class DistributionSetResourceTest extends AbstractIntegrationTest {
} }
@Test @Test
@Description("Ensures that a DS assigned target search with controllerId==1 parameter returns only the target with the given ID.")
public void searchDistributionSetAssignedTargetsRsql() throws Exception { public void searchDistributionSetAssignedTargetsRsql() throws Exception {
// prepare distribution set // prepare distribution set
final Set<DistributionSet> createDistributionSetsAlphabetical = createDistributionSetsAlphabetical(1); final Set<DistributionSet> createDistributionSetsAlphabetical = createDistributionSetsAlphabetical(1);
@@ -815,6 +833,7 @@ public class DistributionSetResourceTest extends AbstractIntegrationTest {
} }
@Test @Test
@Description("Ensures that a DS metadata filtered query with value==knownValue1 parameter returns only the metadata entries with that value.")
public void searchDistributionSetMetadataRsql() throws Exception { public void searchDistributionSetMetadataRsql() throws Exception {
final int totalMetadata = 10; final int totalMetadata = 10;
final String knownKeyPrefix = "knownKey"; final String knownKeyPrefix = "knownKey";

View File

@@ -50,7 +50,7 @@ import ru.yandex.qatools.allure.annotations.Stories;
* *
* *
*/ */
@Features("Component Tests - Management RESTful API") @Features("Component Tests - Management API")
@Stories("Distribution Set Type Resource") @Stories("Distribution Set Type Resource")
public class DistributionSetTypeResourceTest extends AbstractIntegrationTest { public class DistributionSetTypeResourceTest extends AbstractIntegrationTest {

View File

@@ -34,7 +34,7 @@ import ru.yandex.qatools.allure.annotations.Stories;
* *
* *
*/ */
@Features("Component Tests- Download Restful API") @Features("Component Tests - Management API")
@Stories("Download Resource") @Stories("Download Resource")
public class DownloadResourceTest extends AbstractIntegrationTestWithMongoDB { public class DownloadResourceTest extends AbstractIntegrationTestWithMongoDB {

View File

@@ -47,7 +47,7 @@ import ru.yandex.qatools.allure.annotations.Stories;
/** /**
* Tests for covering the {@link RolloutResource}. * Tests for covering the {@link RolloutResource}.
*/ */
@Features("Component Tests - Management RESTful API") @Features("Component Tests - Management API")
@Stories("Rollout Resource") @Stories("Rollout Resource")
public class RolloutResourceTest extends AbstractIntegrationTest { public class RolloutResourceTest extends AbstractIntegrationTest {

View File

@@ -23,13 +23,16 @@ import org.junit.Test;
import org.springframework.mock.web.MockMultipartFile; import org.springframework.mock.web.MockMultipartFile;
import org.springframework.test.web.servlet.MvcResult; import org.springframework.test.web.servlet.MvcResult;
import ru.yandex.qatools.allure.annotations.Description;
import ru.yandex.qatools.allure.annotations.Features;
import ru.yandex.qatools.allure.annotations.Stories;
/** /**
* Tests {@link SoftwareModuleResource} in case of missing MongoDB connection. * Tests {@link SoftwareModuleResource} in case of missing MongoDB connection.
* *
*
*
*
*/ */
@Features("Component Tests - Management API")
@Stories("Download Resource")
public class SMRessourceMisingMongoDbConnectionTest extends AbstractIntegrationTest { public class SMRessourceMisingMongoDbConnectionTest extends AbstractIntegrationTest {
@BeforeClass @BeforeClass
@@ -40,7 +43,8 @@ public class SMRessourceMisingMongoDbConnectionTest extends AbstractIntegrationT
} }
@Test @Test
public void testMissingMongoDbConnection() throws Exception { @Description("Ensures that the correct error code is returned in case MongoDB unavailable.")
public void missingMongoDbConnectionResultsInErrorAtUpload() throws Exception {
assertThat(softwareManagement.findSoftwareModulesAll(pageReq)).hasSize(0); assertThat(softwareManagement.findSoftwareModulesAll(pageReq)).hasSize(0);
assertThat(artifactRepository.findAll()).hasSize(0); assertThat(artifactRepository.findAll()).hasSize(0);

View File

@@ -65,7 +65,7 @@ import ru.yandex.qatools.allure.annotations.Stories;
* Tests for {@link SoftwareModuleResource} {@link RestController}. * Tests for {@link SoftwareModuleResource} {@link RestController}.
* *
*/ */
@Features("Component Tests - Management RESTful API") @Features("Component Tests - Management API")
@Stories("Software Module Resource") @Stories("Software Module Resource")
public class SoftwareModuleResourceTest extends AbstractIntegrationTestWithMongoDB { public class SoftwareModuleResourceTest extends AbstractIntegrationTestWithMongoDB {

View File

@@ -43,11 +43,8 @@ import ru.yandex.qatools.allure.annotations.Stories;
/** /**
* Test for {@link SoftwareModuleTypeResource}. * Test for {@link SoftwareModuleTypeResource}.
* *
*
*
*
*/ */
@Features("Component Tests - Management RESTful API") @Features("Component Tests - Management API")
@Stories("Software Module Type Resource") @Stories("Software Module Type Resource")
public class SoftwareModuleTypeResourceTest extends AbstractIntegrationTest { public class SoftwareModuleTypeResourceTest extends AbstractIntegrationTest {

View File

@@ -24,7 +24,7 @@ import ru.yandex.qatools.allure.annotations.Stories;
/** /**
* *
*/ */
@Features("Component Tests - Management RESTful API") @Features("Component Tests - Management API")
@Stories("Sorting parameter") @Stories("Sorting parameter")
public class SortUtilityTest { public class SortUtilityTest {
private static final String SORT_PARAM_1 = "NAME:ASC"; private static final String SORT_PARAM_1 = "NAME:ASC";

View File

@@ -40,7 +40,7 @@ import ru.yandex.qatools.allure.annotations.Stories;
* *
* *
*/ */
@Features("Component Tests - System Management RESTful API") @Features("Component Tests - Management API")
@Stories("System Management Resource") @Stories("System Management Resource")
public class SystemManagementResourceTest extends AbstractIntegrationTestWithMongoDB { public class SystemManagementResourceTest extends AbstractIntegrationTestWithMongoDB {

View File

@@ -72,7 +72,7 @@ import ru.yandex.qatools.allure.annotations.Stories;
* *
* *
*/ */
@Features("Component Tests - Management RESTful API") @Features("Component Tests - Management API")
@Stories("Target Resource") @Stories("Target Resource")
// TODO: fully document tests -> @Description for long text and reasonable // TODO: fully document tests -> @Description for long text and reasonable
// method name as short text // method name as short text
@@ -229,7 +229,7 @@ public class TargetResourceTest extends AbstractIntegrationTest {
@Test @Test
public void cancelActionOK() throws Exception { public void cancelActionOK() throws Exception {
// prepare test // prepare test
Target tA = createTargetAndStartAction(); final Target tA = createTargetAndStartAction();
// test - cancel the active action // test - cancel the active action
mvc.perform(delete(RestConstants.TARGET_V1_REQUEST_MAPPING + "/{targetId}/actions/{actionId}", mvc.perform(delete(RestConstants.TARGET_V1_REQUEST_MAPPING + "/{targetId}/actions/{actionId}",
@@ -252,7 +252,7 @@ public class TargetResourceTest extends AbstractIntegrationTest {
@Test @Test
public void cancelAnCancelActionIsNotAllowed() throws Exception { public void cancelAnCancelActionIsNotAllowed() throws Exception {
// prepare test // prepare test
Target tA = createTargetAndStartAction(); final Target tA = createTargetAndStartAction();
// cancel the active action // cancel the active action
deploymentManagement.cancelAction(tA.getActions().get(0), tA); deploymentManagement.cancelAction(tA.getActions().get(0), tA);
@@ -272,7 +272,7 @@ public class TargetResourceTest extends AbstractIntegrationTest {
@Description("Force Quit an Action, which is already canceled. Expected Result is an HTTP response code 204.") @Description("Force Quit an Action, which is already canceled. Expected Result is an HTTP response code 204.")
public void forceQuitAnCanceledActionReturnsOk() throws Exception { public void forceQuitAnCanceledActionReturnsOk() throws Exception {
Target tA = createTargetAndStartAction(); final Target tA = createTargetAndStartAction();
// cancel the active action // cancel the active action
deploymentManagement.cancelAction(tA.getActions().get(0), tA); deploymentManagement.cancelAction(tA.getActions().get(0), tA);
@@ -293,7 +293,7 @@ public class TargetResourceTest extends AbstractIntegrationTest {
@Description("Force Quit an Action, which is not canceled. Expected Result is an HTTP response code 405.") @Description("Force Quit an Action, which is not canceled. Expected Result is an HTTP response code 405.")
public void forceQuitAnNotCanceledActionReturnsMethodNotAllowed() throws Exception { public void forceQuitAnNotCanceledActionReturnsMethodNotAllowed() throws Exception {
Target tA = createTargetAndStartAction(); final Target tA = createTargetAndStartAction();
// test - cancel an cancel action returns forbidden // test - cancel an cancel action returns forbidden
mvc.perform(delete(RestConstants.TARGET_V1_REQUEST_MAPPING + "/{targetId}/actions/{actionId}?force=true", mvc.perform(delete(RestConstants.TARGET_V1_REQUEST_MAPPING + "/{targetId}/actions/{actionId}?force=true",
@@ -1232,7 +1232,8 @@ public class TargetResourceTest extends AbstractIntegrationTest {
// prepare test // prepare test
final DistributionSet dsA = TestDataUtil.generateDistributionSet("", softwareManagement, final DistributionSet dsA = TestDataUtil.generateDistributionSet("", softwareManagement,
distributionSetManagement); distributionSetManagement);
Target tA = targetManagement.createTarget(TestDataUtil.buildTargetFixture("target-id-A", "first description")); final Target tA = targetManagement
.createTarget(TestDataUtil.buildTargetFixture("target-id-A", "first description"));
// assign a distribution set so we get an active update action // assign a distribution set so we get an active update action
deploymentManagement.assignDistributionSet(dsA, Lists.newArrayList(tA)); deploymentManagement.assignDistributionSet(dsA, Lists.newArrayList(tA));
// verify active action // verify active action

View File

@@ -15,10 +15,17 @@ import java.util.List;
import org.junit.Test; import org.junit.Test;
import ru.yandex.qatools.allure.annotations.Description;
import ru.yandex.qatools.allure.annotations.Features;
import ru.yandex.qatools.allure.annotations.Stories;
@Features("Junit Tests - Management API")
@Stories("Error Handling")
public class ExceptionInfoTest { public class ExceptionInfoTest {
@Test @Test
public void setterAndGetter() { @Description("Ensures that setters and getters match on teh payload.")
public void setterAndGetterOnExceptionInfo() {
final String knownExceptionClass = "hawkbit.test.exception.Class"; final String knownExceptionClass = "hawkbit.test.exception.Class";
final String knownErrorCode = "hawkbit.error.code.Known"; final String knownErrorCode = "hawkbit.error.code.Known";
final String knownMessage = "a known message"; final String knownMessage = "a known message";

View File

@@ -15,14 +15,22 @@ import java.util.List;
import org.junit.Test; import org.junit.Test;
import ru.yandex.qatools.allure.annotations.Description;
import ru.yandex.qatools.allure.annotations.Features;
import ru.yandex.qatools.allure.annotations.Stories;
@Features("Junit Tests - Management API")
@Stories("Paged List Handling")
public class PagedListTest { public class PagedListTest {
@Test(expected = NullPointerException.class) @Test(expected = NullPointerException.class)
@Description("Ensures that a null payload entitiy throws an exception.")
public void createListWithNullContentThrowsException() { public void createListWithNullContentThrowsException() {
new PagedList<>(null, 0); new PagedList<>(null, 0);
} }
@Test @Test
@Description("Create list with payload and verify content.")
public void createListWithContent() { public void createListWithContent() {
final long knownTotal = 2; final long knownTotal = 2;
final List<String> knownContentList = new ArrayList<>(); final List<String> knownContentList = new ArrayList<>();
@@ -36,6 +44,7 @@ public class PagedListTest {
} }
@Test @Test
@Description("Create list with payload and verify size values.")
public void createListWithSmallerTotalThanContentSizeIsOk() { public void createListWithSmallerTotalThanContentSizeIsOk() {
final long knownTotal = 0; final long knownTotal = 0;
final List<String> knownContentList = new ArrayList<>(); final List<String> knownContentList = new ArrayList<>();