Сбой модульного теста при использовании openclover

В настоящее время я добавляю модульные тесты в проект, который я унаследовал. Модульные тесты работают нормально и успешно, однако, когда я делаю:

mvn clover:clean clover:instrument clover:aggregate clover:clover

Я получаю следующее:

[ERROR] Errors:
[ERROR]   RequestFileRouteTest.successFilePresent:48->__CLR4_2_1hpqk65cb:57 » NoSuchFile

Тестовый пример довольно прост:

package b.pi.ac.md.file.outward;

import b.pi.ac.md.config.SourceConfiguration;
import com.github.stefanbirkner.fakesftpserver.rule.FakeSftpServerRule;
import java.io.IOException;
import java.nio.charset.Charset;
import lombok.extern.slf4j.Slf4j;
import org.apache.camel.CamelContext;
import org.apache.camel.builder.NotifyBuilder;
import org.apache.camel.test.spring.CamelSpringBootRunner;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.ActiveProfiles;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

@RunWith(CamelSpringBootRunner.class)
@SpringBootTest
@ActiveProfiles("test")
@Slf4j
public class RequestFileRouteTest {

    private static final String TEST_FILE_NAME = "test.txt";

    @Rule
    public final FakeSftpServerRule sftpd = new FakeSftpServerRule();

    @Autowired
    private CamelContext context;

    @Autowired
    private SourceConfiguration.Camel camelConfig;
    @Autowired
    private SourceConfiguration.Dynamo dynamoConfig;

    @Before
    public void init() throws Exception {
        sftpd.createDirectories(String.format("/%s/%s", dynamoConfig.getSftpUserName(),
                camelConfig.getRemoteFileDestination()));
    }

    @Test
    public void successFilePresent() throws IOException {
        NotifyBuilder notification = new NotifyBuilder(context)
                .from(String.format("file:%s", camelConfig.getFileDestination()))
                .whenDone(1)
                .create();

        notification.matchesMockWaitTime();

        assertTrue(sftpd.existsFile(String.format("/%s/%s", camelConfig.getRemoteFileDestination(), TEST_FILE_NAME)));
        assertEquals("test content", sftpd.getFileContent(
                String.format("/%s/%s", camelConfig.getRemoteFileDestination(), TEST_FILE_NAME),
                Charset.forName("UTF-8")));

    }
}

У меня есть другой тестовый пример, который использует:

  • пружинный башмак 1.5.9
  • верблюд 2.20.1

И это успешно работает с клевером.

Я бегу:

  • openclover 4.2.1
  • Maven 3.5.2
  • Java 8 обновление 152
  • Макос Хай Сьерра

Любое понимание будет с благодарностью

0 ответов

Другие вопросы по тегам