Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #7 from Izakey/develop
Document office API to manage offices & employees
- Loading branch information
Showing
8 changed files
with
1,048 additions
and
191 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
@@ -2,6 +2,9 @@ | ||
.idea | ||
build/ | ||
target/ | ||
api/out | ||
component-test/out | ||
service/out | ||
|
||
# Ignore Gradle GUI config | ||
gradle-app.setting | ||
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
@@ -0,0 +1,119 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you 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 | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* 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 org.apache.fineract.cn.office; | ||
|
||
import org.apache.fineract.cn.anubis.test.v1.TenantApplicationSecurityEnvironmentTestRule; | ||
import org.apache.fineract.cn.api.context.AutoUserContext; | ||
import org.apache.fineract.cn.office.api.v1.EventConstants; | ||
import org.apache.fineract.cn.office.api.v1.client.OrganizationManager; | ||
import org.apache.fineract.cn.office.rest.config.OfficeRestConfiguration; | ||
import org.apache.fineract.cn.test.env.TestEnvironment; | ||
import org.apache.fineract.cn.test.fixture.TenantDataStoreContextTestRule; | ||
import org.apache.fineract.cn.test.fixture.cassandra.CassandraInitializer; | ||
import org.apache.fineract.cn.test.fixture.mariadb.MariaDBInitializer; | ||
import org.apache.fineract.cn.test.listener.EnableEventRecording; | ||
import org.apache.fineract.cn.test.listener.EventRecorder; | ||
import org.junit.After; | ||
import org.junit.Before; | ||
import org.junit.ClassRule; | ||
import org.junit.Rule; | ||
import org.junit.rules.RuleChain; | ||
import org.junit.rules.TestRule; | ||
import org.junit.runner.RunWith; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.boot.test.context.SpringBootTest; | ||
import org.springframework.cloud.netflix.feign.EnableFeignClients; | ||
import org.springframework.cloud.netflix.ribbon.RibbonClient; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.ComponentScan; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.context.annotation.Import; | ||
import org.springframework.test.context.junit4.SpringRunner; | ||
|
||
@SuppressWarnings("SpringAutowiredFieldsWarningInspection") | ||
@RunWith(SpringRunner.class) | ||
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT, | ||
classes = {AbstractOfficeTest.TestConfiguration.class}) | ||
public class AbstractOfficeTest extends SuiteTestEnvironment { | ||
private static final String APP_NAME = "office-v1"; | ||
private static final String TEST_USER = "thutmosis"; | ||
|
||
private final static TestEnvironment testEnvironment = new TestEnvironment(APP_NAME); | ||
private final static CassandraInitializer cassandraInitializer = new CassandraInitializer(); | ||
private final static MariaDBInitializer mariaDBInitializer = new MariaDBInitializer(); | ||
private final static TenantDataStoreContextTestRule tenantDataStoreContext = TenantDataStoreContextTestRule.forRandomTenantName(cassandraInitializer, mariaDBInitializer); | ||
|
||
@ClassRule | ||
public static TestRule orderClassRules = RuleChain | ||
.outerRule(testEnvironment) | ||
.around(cassandraInitializer) | ||
.around(mariaDBInitializer) | ||
.around(tenantDataStoreContext); | ||
|
||
@Rule | ||
public final TenantApplicationSecurityEnvironmentTestRule tenantApplicationSecurityEnvironment | ||
= new TenantApplicationSecurityEnvironmentTestRule(testEnvironment, this::waitForInitialize); | ||
|
||
@Autowired | ||
OrganizationManager organizationManager; | ||
|
||
@Autowired | ||
EventRecorder eventRecorder; | ||
|
||
private AutoUserContext userContext; | ||
|
||
@Before | ||
public void prepareTest ( ) { | ||
userContext = tenantApplicationSecurityEnvironment.createAutoUserContext(TEST_USER); | ||
} | ||
|
||
@After | ||
public void cleanupTest ( ) { | ||
userContext.close(); | ||
} | ||
|
||
public boolean waitForInitialize ( ) { | ||
try { | ||
return this.eventRecorder.wait(EventConstants.INITIALIZE, EventConstants.INITIALIZE); | ||
} catch (final InterruptedException e) { | ||
throw new IllegalStateException(e); | ||
} | ||
} | ||
|
||
@Configuration | ||
@ComponentScan( | ||
basePackages = "org.apache.fineract.cn.office.listener" | ||
) | ||
@EnableFeignClients(basePackages = {"org.apache.fineract.cn.office.api.v1.client"}) | ||
@RibbonClient(name = APP_NAME) | ||
@EnableEventRecording(maxWait = 5000L) | ||
@Import({OfficeRestConfiguration.class}) | ||
public static class TestConfiguration { | ||
public TestConfiguration ( ) { | ||
super(); | ||
} | ||
|
||
@Bean | ||
public Logger logger ( ) { | ||
return LoggerFactory.getLogger("office-test-logger"); | ||
} | ||
} | ||
} |
Oops, something went wrong.