-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #407 from terrestris/add-controller-integration-tests
Add controller integration tests
- Loading branch information
Showing
19 changed files
with
1,094 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
...un-boot/src/test/java/de/terrestris/shogun/boot/controller/ApplicationControllerTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* SHOGun, https://terrestris.github.io/shogun/ | ||
* | ||
* Copyright © 2021-present terrestris GmbH & Co. KG | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0.txt | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package de.terrestris.shogun.boot.controller; | ||
|
||
import de.terrestris.shogun.lib.controller.ApplicationController; | ||
import de.terrestris.shogun.lib.model.Application; | ||
import de.terrestris.shogun.lib.model.Group; | ||
import de.terrestris.shogun.lib.repository.ApplicationRepository; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
public class ApplicationControllerTest extends BaseControllerTest<ApplicationController, ApplicationRepository, Application> { | ||
|
||
public void setBaseEntity() { | ||
entityClass = Application.class; | ||
} | ||
|
||
public void setBasePath() { | ||
basePath = "/applications"; | ||
} | ||
|
||
public void insertTestData() { | ||
Application entity1 = new Application(); | ||
Application entity2 = new Application(); | ||
Application entity3 = new Application(); | ||
|
||
entity1.setName("Application 1"); | ||
entity2.setName("Application 2"); | ||
entity3.setName("Application 3"); | ||
|
||
ArrayList<Application> entities = new ArrayList<>(); | ||
|
||
entities.add(entity1); | ||
entities.add(entity2); | ||
entities.add(entity3); | ||
|
||
List<Application> persistedEntities = (List<Application>) repository.saveAll(entities); | ||
|
||
testData = persistedEntities; | ||
} | ||
|
||
} |
Oops, something went wrong.