-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EVNT-45: Adding Java 17 Compatability.
- Loading branch information
Showing
6 changed files
with
168 additions
and
72 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,54 @@ | ||
# this build is designed to replicate the Travis CI workflow | ||
name: Build with Maven | ||
name: Java CI with Maven | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ master ] | ||
workflow_dispatch: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
platform: [ ubuntu-latest ] | ||
java-version: [ 8 ] | ||
java-8: | ||
|
||
runs-on: ${{ matrix.platform }} | ||
env: | ||
PLATFORM: ${{ matrix.platform }} | ||
JAVA_VERSION: ${{ matrix.java-version }} | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v1 | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 8 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: ${{ matrix.java-version }} | ||
- name: Cache local Maven repository | ||
uses: actions/cache@v2 | ||
java-version: '8' | ||
distribution: 'adopt' | ||
cache: maven | ||
- name: Build with Maven | ||
run: mvn clean install --file pom.xml | ||
|
||
java-11: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '11' | ||
distribution: 'adopt' | ||
cache: maven | ||
- name: Build with Maven | ||
run: mvn clean install --file pom.xml | ||
|
||
java-17: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
path: ~/.m2/repository | ||
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: | | ||
${{ runner.os }}-maven- | ||
- name: Install dependencies | ||
run: mvn clean install -DskipTests=true -Dmaven.javadoc.skip=true --batch-mode --show-version --file pom.xml | ||
java-version: '17' | ||
distribution: 'adopt' | ||
cache: maven | ||
- name: Build with Maven | ||
run: mvn test --batch-mode --file pom.xml | ||
run: mvn clean install --file pom.xml |
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
56 changes: 56 additions & 0 deletions
56
api/src/test/java/org/openmrs/module/event/advice/EventBehaviourIsolatedTest.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,56 @@ | ||
package org.openmrs.module.event.advice; | ||
|
||
import org.junit.After; | ||
import org.junit.BeforeClass; | ||
import org.junit.Test; | ||
import org.openmrs.Concept; | ||
import org.openmrs.ConceptDescription; | ||
import org.openmrs.ConceptName; | ||
import org.openmrs.Patient; | ||
import org.openmrs.api.context.Context; | ||
import org.openmrs.event.Event; | ||
import org.openmrs.event.EventEngine; | ||
import org.openmrs.event.EventEngineUtil; | ||
import org.openmrs.event.MockNestedService; | ||
import org.openmrs.test.BaseModuleContextSensitiveTest; | ||
import org.springframework.transaction.annotation.Propagation; | ||
import org.springframework.transaction.annotation.Transactional; | ||
|
||
import java.util.Locale; | ||
|
||
import static org.mockito.Mockito.reset; | ||
import static org.mockito.Mockito.spy; | ||
import static org.mockito.Mockito.verify; | ||
|
||
public class EventBehaviourIsolatedTest extends BaseModuleContextSensitiveTest { | ||
|
||
private static EventEngine eventEngine; | ||
|
||
@BeforeClass | ||
public static void beforeClass() { | ||
eventEngine = spy(new EventEngine()); | ||
EventEngineUtil.setEventEngine(eventEngine); | ||
} | ||
|
||
@After | ||
public void afterTest() { | ||
reset(eventEngine); // need to manually reset the event engine to clean up from previous test | ||
} | ||
|
||
@Test | ||
@Transactional(propagation = Propagation.NOT_SUPPORTED) | ||
public void shouldFireEventsOnNestedTransactions() throws Exception { | ||
|
||
Concept concept = new Concept(); | ||
ConceptName name = new ConceptName("Name", Locale.ENGLISH); | ||
concept.addName(name); | ||
concept.addDescription(new ConceptDescription("Description", Locale.ENGLISH)); | ||
|
||
Context.getService(MockNestedService.class).outerTransaction(concept, false, false); | ||
|
||
Patient patient = Context.getPatientService().getPatient(2); | ||
verify(eventEngine).fireAction(Event.Action.UPDATED.name(), patient); | ||
verify(eventEngine).fireAction(Event.Action.CREATED.name(), concept); | ||
} | ||
|
||
} |
59 changes: 59 additions & 0 deletions
59
api/src/test/java/org/openmrs/module/event/advice/EventBehaviourTransactionalTest.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,59 @@ | ||
package org.openmrs.module.event.advice; | ||
|
||
import org.junit.After; | ||
import org.junit.BeforeClass; | ||
import org.junit.Test; | ||
import org.openmrs.Concept; | ||
import org.openmrs.ConceptDescription; | ||
import org.openmrs.ConceptName; | ||
import org.openmrs.Patient; | ||
import org.openmrs.api.context.Context; | ||
import org.openmrs.event.Event; | ||
import org.openmrs.event.EventEngine; | ||
import org.openmrs.event.EventEngineUtil; | ||
import org.openmrs.event.MockNestedService; | ||
import org.openmrs.test.BaseModuleContextSensitiveTest; | ||
import org.springframework.transaction.annotation.Transactional; | ||
|
||
import java.util.Locale; | ||
|
||
import static org.mockito.Mockito.never; | ||
import static org.mockito.Mockito.reset; | ||
import static org.mockito.Mockito.spy; | ||
import static org.mockito.Mockito.verify; | ||
|
||
public class EventBehaviourTransactionalTest extends BaseModuleContextSensitiveTest { | ||
|
||
private static EventEngine eventEngine; | ||
|
||
@BeforeClass | ||
public static void beforeClass() { | ||
eventEngine = spy(new EventEngine()); | ||
EventEngineUtil.setEventEngine(eventEngine); | ||
} | ||
|
||
@After | ||
public void afterTest() { | ||
reset(eventEngine); // need to manually reset the event engine to clean up from previous test | ||
} | ||
|
||
@Test | ||
@Transactional | ||
public void shouldNotFireOuterEventOnOuterTransactionIfRollback() throws Exception { | ||
|
||
Concept concept = new Concept(); | ||
ConceptName name = new ConceptName("Name", Locale.ENGLISH); | ||
concept.addName(name); | ||
concept.addDescription(new ConceptDescription("Description", Locale.ENGLISH)); | ||
|
||
try { | ||
Context.getService(MockNestedService.class).outerTransaction(concept, true, false); | ||
} | ||
catch (Exception e) { | ||
} | ||
|
||
Patient patient = Context.getPatientService().getPatient(2); | ||
verify(eventEngine).fireAction(Event.Action.UPDATED.name(), patient); | ||
verify(eventEngine, never()).fireAction(Event.Action.CREATED.name(), concept); | ||
} | ||
} |
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