簡體   English   中英

嘲笑:聲明后,帶有“ spy”注釋的方法就運行了

[英]mockito : 'spy' annotated method ran once declared

我正在嘗試使用以下方式創建未來應用程序的骨骼:java 8,windows 10,intelliJ,junit5,模擬。 使用模仿程序運行測試時出現問題,這是我使用間諜編寫的第一個測試,並且不起作用。

似乎該語句when(client_spy.try_to_connect(anyString(),anyInt())).thenReturn(null); 導致該方法的執行,這是不期望的:我只想告訴try_to_connect返回的null是調用了try_to_connect方法。 因此,該方法在測試中被調用,並且沒有參數,因此我在此方法中遇到錯誤。

這是測試類(某些部分):

@ExtendWith(MockitoExtension.class)
public class unitTestsTry2 {

    private static final String LOCAL_IP = "localhost";
    private static final String REMOTE_IP = "localhost";
    private static final String LOCAL_PORT = "1001";
    private static final String REMOTE_PORT = "1002";
    private static  ApplicationRunner apr=new ApplicationRunner();

    @Spy
    ClientExtremity client_spy=new ClientExtremity();

(...)
    @Test
    void startupAndTryToConnect() {
        apr.client_endpoint = client_spy;
        when(client_spy.try_to_connect(anyString(),anyInt()))
                .thenReturn(null);  <--- THE FAULTLY LINE

        apr.main(new String[]{LOCAL_IP,LOCAL_PORT,REMOTE_IP,REMOTE_PORT});

        verify(((ClientOrders)apr.client_endpoint)).try_to_connect(REMOTE_IP,Integer.parseInt(REMOTE_PORT));

    }
}

這是我的gradle文件:

buildscript {
    dependencies {
        classpath group: 'de.dynamicfiles.projects.gradle.plugins', name: 'javafx-gradle-plugin', version: '8.8.2'
    }
    repositories {
        mavenLocal()
        mavenCentral()

    }
}

plugins {
    id 'java'
}

group 'lorry'
version '1'

sourceCompatibility = 1.8

repositories {
    mavenLocal()
    mavenCentral()
    maven { url "https://dl.bintray.com/mockito/maven" }
}

apply plugin: 'javafx-gradle-plugin'

test {
    useJUnitPlatform()

}

compileJava.dependsOn clean

jfx {
    // minimal requirement for jfxJar-task
    mainClass = 'lorry.ApplicationRunner'

    // minimal requirement for jfxNative-task
    vendor = 'YourName'

    launcherArguments = ["localhost", "1001", "localhost", "1002"]

    // gradle jfxRun
    runJavaParameter = null // String
    //runAppParameter = "localhost" "1001" "localhost" "1002" // String

    jfxMainAppJarName = "chat.jar"
}

dependencies {

    //testCompile group: 'junit', name: 'junit', version: '4.12'
    compile group: 'javax.websocket', name: 'javax.websocket-api', version: '1.1'
    compile group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
    //testImplementation('org.junit.jupiter:junit-jupiter-api:5.2.0')
    //testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.2.0')


    def final junitVersion = "5.2.0"
    compile group: 'com.google.inject', name: 'guice', version: '4.1.0'
    //compile group: 'com.google.code.gson', name: 'gson', version: '2.8.2'
    compile group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: junitVersion
    compile group: 'org.assertj', name: 'assertj-core', version: '3.9.0'
    compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.7'

    testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: junitVersion
    testCompile group: 'org.mockito', name: 'mockito-core', version: '2.21.0'
    testCompile 'org.mockito:mockito-junit-jupiter:2.21.0'
    testCompile group:'org.junit.jupiter',name:'junit-jupiter-api',version:  junitVersion
    testRuntime group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: junitVersion

    compile 'org.hamcrest:hamcrest-all:1.3'

    testCompile "org.testfx:testfx-core:4.0.13-alpha"
    testCompile 'org.testfx:testfx-junit5:4.0.13-alpha'

    compile group: 'org.glassfish.tyrus', name: 'tyrus-server', version: '1.13.1'
    // https://mvnrepository.com/artifact/org.glassfish.tyrus/tyrus-client
    compile group: 'org.glassfish.tyrus', name: 'tyrus-client', version: '1.13.1'


}


jar {
    baseName = 'Chat'
    version = ''
    manifest {
        attributes(
                'Class-Path': configurations.compile.collect { it.getName() }.join(' '),
                'Main-Class': 'lorry.Chat'
        )
    }
}

編輯感謝您的回答。 我更改了代碼:

@Spy
public ClientExtremity client_spy=new ClientExtremity();

@Test
void startupAndTryToConnect() {
    apr.client_endpoint = client_spy;
    when(client_spy).try_to_connect(anyString(),anyInt()).thenReturn(null);

    apr.main(new String[]{LOCAL_IP,LOCAL_PORT,REMOTE_IP,REMOTE_PORT});

    verify(((ClientOrders)apr.client_endpoint)).try_to_connect(REMOTE_IP,Integer.parseInt(REMOTE_PORT));

}

但是intelliJ告訴我:錯誤:(73,25)java:找不到符號symbol:方法try_to_connect(java.lang.String,int)位置:接口org.mockito.stubbing.OngoingStubbing

具有以下clientExtremity:

@ClientEndpoint(encoders = MessageEncoder.class, decoders = MessageDecoder.class)
public class ClientExtremity implements ClientOrders {



        @OnMessage
        public void onMessage(Message message) {

        }

    @Override
    public Session try_to_connect(String remote_ip, Integer remote_port) {
        ClientManager client = ClientManager.createClient();
        Session session;
        try {
            session = client.connectToServer(ClientExtremity.class, new URI(
                    format("wss://%1$2s:%2$2d/chat",remote_ip,remote_port)
            ));
        } catch (Exception e) {
            e.printStackTrace();
            session=null;
        }
        return session;
    }
}

我不知道為什么測試方法中的try_to_connect聲明失敗。

編輯2此處是applicationRunner:

public class ApplicationRunner {

    public static String localIP, remoteIP;
    public static int localPort, remotePort;
    public static Fenetre fenetre = new Fenetre();
    public static Session session=null;
    public static ClientExtremity client_endpoint=new ClientExtremity();

    public static void init(String[] args) {
        localIP = args[0];
        localPort = Integer.parseInt(args[1]);
        remoteIP = args[2];
        remotePort = Integer.parseInt(args[3]);

        try {
            new Thread(fenetre).start();

        } catch (Exception e) {
            e.printStackTrace();
        }

        session = ((ClientOrders) client_endpoint).try_to_connect(localIP,localPort);



    }

    public static void main (String[]args){
        init(args);

    }
}

OK完成。 正確的代碼是:

@Test
    void startupAndTryToConnect() {
        ClientExtremity client_spy = spy(new ClientExtremity());
        apr.client_endpoint = client_spy;
        doReturn(null).when(client_spy).try_to_connect(anyString(), anyInt());

        apr.init(new String[]{LOCAL_IP,LOCAL_PORT,REMOTE_IP,REMOTE_PORT});

        verify(client_spy).try_to_connect(REMOTE_IP,Integer.parseInt(REMOTE_PORT));

    }

我需要:

  • 通過方法'spy'更改@spy
  • 使用doReturn / etc ...而不是when / etc ...
  • 在doReturn和verify中,唯一的參數是該類的實例,您必須編寫verify(someObjectInstance,optionalAdditionalParameters).someMethod(someArgsWithMatchers)
  • 並且因為我不再使用@ExtendWith(MockitoExtension.class) ,所以不得不放入MockitoAnnotations.initMocks(unitTestsTry2.class); 在@BeforeAll帶注釋的方法中。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM