如何在JUnit测试中访问空手道配置参数?

时间:2019-05-09 14:44:52

标签: java junit karate

是否可以通过JUnit测试中的karate-config.js访问配置参数?

示例:

karate-config.js

function fn() {   
  var env = karate.env; // get java system property 'karate.env'
  karate.log('karate.env system property was:', env);
  if (!env) {
    env = 'dev'; // a custom 'intelligent' default
  }
  var config = { // base config JSON
    appId: 'my.app.id',
    appSecret: 'my.secret',
    someUrlBase: 'https://some-host.com/v1/auth/',
    anotherUrlBase: 'https://another-host.com/v1/'
  };
  if (env == 'stage') {
    // over-ride only those that need to be
    config.someUrlBase = 'https://stage-host/v1/auth';
  } else if (env == 'e2e') {
    config.someUrlBase = 'https://e2e-host/v1/auth';
  }
  // don't waste time waiting for a connection or if servers don't respond within 5 seconds
  karate.configure('connectTimeout', 5000);
  karate.configure('readTimeout', 5000);
  return config;
}

MyTest.java

public class MyTest {

    @Test
    public void test() {
        // How to access e.g. config.appId?
    }
}

2 个答案:

答案 0 :(得分:0)

如果您需要从Java代码调用外部javascript函数,建议您看看this

答案 1 :(得分:0)

但是为什么!?

有多种方法,但是首先-也许您正在过度设计事物,并注意到有可能在空手道中读取*.properties文件:properties.feature

您还可以使用一个空的场景创建功能文件-并通过Java API调用它:https://github.com/intuit/karate#java-api

Map<String, Object> result = Runner.runFeature('classpath:foo.feature', null, true);

将在返回的Map中为您提供config的值。