Skip to content

Commit

Permalink
Add basic integration tests for all BaseController extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
dnlkoch committed Oct 18, 2021
1 parent baedcb4 commit 959c1d1
Show file tree
Hide file tree
Showing 6 changed files with 1,020 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
/* SHOGun, https://terrestris.github.io/shogun/
*
* Copyright © 2020-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;
}

}
Loading

0 comments on commit 959c1d1

Please sign in to comment.