Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to pass gradle systemProperties JUnit5 tests?

I am using gradle 3.5 and Unit 5 (jupiter).

I wish to pass System property to my tests, in order to configure the test

I am running the test using this command gradle test -Denv=envFile1

Here is my gradle file :

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.0-M4' //JUnit 5
    }
}

repositories {
    mavenCentral()
}   

ext.versionJunitPlatform        = '1.0.0-M4'
ext.versionJunitJupiter         = '5.0.0-M4'
ext.versionLog4j                = '1.2.17'
ext.versionRestAssured          = '2.9.0'
ext.versionRestAssuredJsonValid = '3.0.2'
ext.versionHamcrest             = '1.3'
ext.versionJacksonDatabind      = '2.9.0.pr2'
ext.versionSeleniumJava         = '3.3.1' 

test {
    systemProperties System.properties
    systemProperty 'env1', System.properties['env']
    systemProperty 'env2', 'i am a static env'
}

dependencies {
    compile group: 'log4j'                      , name: 'log4j'                 , version: "$versionLog4j"               
    compile group: 'com.jayway.restassured'     , name: 'rest-assured'          , version: "$versionRestAssured"         
    compile group: 'io.rest-assured'            , name: 'json-schema-validator' , version: "$versionRestAssuredJsonValid"    
    compile group: 'org.hamcrest'               , name: 'hamcrest-all'          , version: "$versionHamcrest"     
    compile group: 'com.fasterxml.jackson.core' , name: 'jackson-databind'      , version: "$versionJacksonDatabind" 
    compile group: 'org.seleniumhq.selenium'    , name: 'selenium-java'         , version: "$versionSeleniumJava"    

    testCompile group: 'org.junit.jupiter' , name: 'junit-jupiter-api'     , version: "$versionJunitJupiter"
    testRuntime group: 'org.junit.jupiter' , name: 'junit-jupiter-engine'  , version: "$versionJunitJupiter"
}

Here is my test:

package com.somecompany.someProject.tests;

import org.junit.jupiter.api.Test;

public class AaTest {
    @Test
    public void a() {
        System.out.println("a env: " + System.getProperty("env"));
        System.out.println("a env1: " + System.getProperty("env1"));
        System.out.println("a env2: " + System.getProperty("env2"));
    }
} 

This is the output I get:

gradle test -Denv=envName
:compileJava UP-TO-DATE
:processResources UP-TO-DATE
:classes UP-TO-DATE
:compileTestJava
:processTestResources UP-TO-DATE
:testClasses
:junitPlatformTest
a env: null
a env1: null
a env2: null

*i have updated the question

like image 698
Shay_t Avatar asked Apr 26 '17 17:04

Shay_t


1 Answers

This is a duplicate of Setting system properties when using junitPlatform, which I answered here: https://stackoverflow.com/a/41334739/388980

You can set system properties like this:

afterEvaluate {
    def junitPlatformTestTask = tasks.getByName('junitPlatformTest')

    junitPlatformTestTask.systemProperty 'org.slf4j.simpleLogger.defaultLogLevel', 'warn'
}
like image 113
Sam Brannen Avatar answered Nov 14 '22 22:11

Sam Brannen