【问题标题】:passing program arguments to spring boot将程序参数传递给spring boot
【发布时间】:2018-12-11 17:54:25
【问题描述】:

我有一个 Spring Boot 批处理应用程序,它使用程序参数来获取一些文件并对其进行操作。该应用程序运行良好,但我在运行 junit 测试时遇到问题。 这是我的代码:

 @Component
public class ApplicationArguments implements InitializingBean {

    @Autowired private org.springframework.boot.ApplicationArguments appArgs;
    private String filePath;

    @Override
    public void afterPropertiesSet() throws Exception {
        filePath = appArgs.getSourceArgs()[0];
    }
}

这个 bean 被另一个 bean 用来构建完整路径:

@Component
public class InitPaths implements InitializingBean {

    @Autowired private ApplicationArguments myAppArgs;
    private String fullPath;

    @Override
    public void afterPropertiesSet() throws Exception {
        fullPath = myAppArgs.getFilePath(); //this will be null when launching tests
        fullPath.toString();//this will throw a NullPointerException if we run the test
    }
}

应用程序使用此命令可以正常工作:

java -jar myApp.jar fileName.txt

是否有任何解决方案可以将相同的参数传递给 junit 测试?

我尝试使用模拟,但我遇到了同样的问题:

@RunWith(SpringRunner.class)
@SpringBootTest
public class BatchTest {

    @MockBean
    ApplicationArguments applicationArguments;
    @Autowired
    @InjectMocks
    InitPaths  initPaths;

    @Before
    public void before() {

        when(applicationArguments.getFilePath()).thenReturn("myCustomFile.dat");
    }

    @Test
    public void contextLoad() {
    }
}

这是错误:

Invocation of init method failed; nested exception is java.lang.NullPointerException

【问题讨论】:

  • 尽量不要@InjectMocks注解,它不需要SpringRunner.class
  • 感谢@borino 的回复。我试过了,但我遇到了同样的问题。

标签: spring-boot spring-test


【解决方案1】:

问题是因为InitPaths 中的方法afterPropertiesSet() 已经在测试中运行了较早的before。这意味着您的嘲笑 ApplicationArguments 没有任何嘲笑行为。从我的角度来看,您可能会创建具有预定义行为的新模拟 ApplicationArguments

@RunWith(SpringRunner.class)
@SpringBootTest
@Import(ApplicationArgumentsTestConfig.class)
public class BatchTest {

@Autowired
InitPaths  initPaths;

@Test
public void contextLoad() {
}

public static class ApplicationArgumentsTestConfig {

    @Bean
    @Primary
    public ApplicationArguments mockArg() {
        ApplicationArguments mocked = Mockito.mock(ApplicationArguments.class);
        Mockito.when(mocked.getFilePath()).thenReturn("test-mock-path");
        return mocked;
    }
 }
}

我刚刚为我检查了工作。

【讨论】:

  • 完美运行。非常感谢博里诺,你是一个救生员。我添加了一些更改,因为我在 ApplicationArguments 类中有一个 ArrayIndexOutOfBoundsException(这是正常的,因为我没有参数)。所以我将@Profile("!test") 添加到ApplicationArguments 类然后我使用@ActiveProfiles("test") 注释运行我的测试。
猜你喜欢
  • 1970-01-01
  • 2020-12-13
  • 2020-03-08
  • 2020-12-15
  • 2017-01-01
  • 2023-03-26
  • 2018-05-27
  • 2015-11-26
  • 2015-05-23
相关资源
最近更新 更多