测试代码为:

import java.io.IOException;
import java.io.OutputStream;
import java.net.InetSocketAddress;
import java.time.LocalTime;

import com.sun.net.httpserver.HttpExchange;
import com.sun.net.httpserver.HttpHandler;
import com.sun.net.httpserver.HttpServer;
import org.junit.runner.RunWith;
import org.powermock.modules.junit4.PowerMockRunner;

@RunWith(PowerMockRunner.class)
public class HelloWorldByHour {

    private static LocalTime REST_START_TIME = LocalTime.of(14, 0);
    private static LocalTime REST_END_TIME = LocalTime.of(16, 0);

    public static void main(String[] args) throws Exception {
        HttpServer server = HttpServer.create(new InetSocketAddress(8080), 0);
        server.createContext("/greeting", new MyHandler());
        server.setExecutor(null); // creates a default executor
        server.start();
    }

    private static class MyHandler implements HttpHandler {
        public void handle(HttpExchange t) throws IOException {
            LocalTime time = LocalTime.now();
            String response;

            if (time.isAfter(REST_START_TIME) && time.isBefore(REST_END_TIME)) {
                response = "Nap time";
            } else {
                response = "Hello World";
            }

            t.sendResponseHeaders(200, response.length());
            OutputStream os = t.getResponseBody();
            os.write(response.getBytes());
            os.close();
        }
    }

}


运行测试时,我得到:


  org.mockito.exceptions.misusing.UnfinishedStubbingException:
  在此处检测到未完成的存根:
  ->在HelloWorldByHourTest.testMain(HelloWorldByHourTest.java:35)
  
  例如。 thenReturn()可能会丢失。
  正确存根的示例:
      when(mock.isOk())。thenReturn(true);
      when(mock.isOk())。thenThrow(exception);
      doThrow(exception).when(mock).someVoidMethod();
  提示:
   1.缺少thenReturn()
   2.您正在尝试使用最终方法,您这个调皮的开发人员!
   3:在完成“ thenReturn”指令之前,您正在测试另一个模拟的行为


我的pom.xml是

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>server</groupId>
    <artifactId>server</artifactId>
    <version>1.0-SNAPSHOT</version>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>(whatever version is current)</version>
                <configuration>
                    <!-- or whatever version you use -->
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-api-mockito</artifactId>
            <version>1.6.5</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-core</artifactId>
            <version>1.6.5</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-module-junit4</artifactId>
            <version>1.6.5</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-module-junit4</artifactId>
            <version>RELEASE</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
        </dependency>
    </dependencies>
</project>


测试代码为:

import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockRunner;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.URL;
import java.time.LocalTime;

import static org.powermock.api.mockito.PowerMockito.mockStatic;
import static org.powermock.api.mockito.PowerMockito.when;

@RunWith(PowerMockRunner.class)
@PrepareForTest(LocalTime.class)
public class HelloWorldByHourTest {

    private String sendRequest() throws IOException {
        URL url = new URL("localhost:8080/greeting");
        BufferedReader br = new BufferedReader(new InputStreamReader(url.openStream()));
        String strTemp = "";
        StringBuilder sb = new StringBuilder();
        while (null != (strTemp = br.readLine())) {
            sb.append(strTemp);
        }
        return sb.toString();
    }

    @Test
    public void testMain() throws Exception {

        mockStatic(LocalTime.class);
        when(LocalTime.now()).thenReturn(LocalTime.of(15, 0));
        HelloWorldByHour.main(null);
        String response = sendRequest();
        Assert.assertEquals("Nap time", response);
    }
}


知道有什么问题吗?

最佳答案

问题是您在whenthenReturn中的LocalDate上调用了静态方法

尝试这样的事情:

    LocalTime time = LocalTime.of(15,0);
    mockStatic(LocalTime.class);
    when(LocalTime.now()).thenReturn(time);

10-04 18:54