java——为什么在我的例子中用mockito模拟静态方法不起作用?

zfciruhq  于 2021-08-20  发布在  Java
关注(0)|答案(1)|浏览(422)

我有这个复杂的方法。我只想嘲笑结果。里面的一切基本上都应该被忽略。我用的是mockito。

class JiraManager
{
    public static  List<Issue> searchMitarbeiterIssue(String mitarbeiterName) throws JqlParseException, SearchException {
        ApplicationUser user = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser();
        JqlQueryParser jqlQueryParser = ComponentAccessor.getComponent(JqlQueryParser.class);
        SearchService searchService = ComponentAccessor.getComponent(SearchService.class);
        String jqlSearchString = "project = BLUB AND issuetype = BLOB AND text ~ \"" + myName+ "\""+" AND status = aktive";
        final Query query = jqlQueryParser.parseQuery(jqlSearchString);
        List<Issue> issues = null;
        Query queryToExecute = JqlQueryBuilder.newBuilder(query).buildQuery();
        // get results for the jql query
        SearchResults searchResult = searchService.search(user, queryToExecute, PagerFilter.getUnlimitedFilter());
        try {
            Method newGetMethod = null;
            try {
                newGetMethod = SearchResults.class.getMethod("getIssues");
            } catch (NoSuchMethodException e) {
                try {
                    LOGGER.warn("SearchResults.getIssues does not exist - trying to use getResults!");
                    newGetMethod = SearchResults.class.getMethod("getResults");
                } catch (NoSuchMethodError e2) {
                    LOGGER.error("SearchResults.getResults does not exist!");
                }
            }
            if (newGetMethod != null) {
                issues = (List<Issue>) newGetMethod.invoke(searchResult);
            } else {
                LOGGER.error("ERROR NO METHOD TO GET ISSUES !");
                throw new RuntimeException("ICT: SearchResults Service from JIRA NOT AVAILABLE (getIssue / getResults)");
            }
        } catch (NoSuchMethodException | IllegalAccessException | IllegalArgumentException | InvocationTargetException e) {
            LOGGER.error("Jql Helper can not get search result (ICT)", e);
        } catch (Exception e) {
            LOGGER.error("Jql Helper can not get search result - other exception (ICT)", e);
        }
        return issues;
    }
}

我不希望mockito运行方法中的所有代码。它应该只返回列表。这就是全部。所以我试了一下:

try (MockedStatic<JiraManager> utilities = Mockito.mockStatic(JiraManager.class)) {
    utilities.when(() -> JiraManager.searchMitarbeiterIssue(any()))
            .thenReturn(Collections.singletonList(mitarbeiterIssueResult));
    assertTrue(JiraManager.searchMitarbeiterIssue("").size() == 1);
}

但它不起作用。它总是返回null。为什么?方法中的代码是否已执行?Mockito到底在干什么?

00jrzges

00jrzges1#

下面是我的作品。
创建mockedstatic类字段

private MockedStatic<MyUtilClassWithStaticMethods> myUtil;

在每个测试用例之前初始化mockedstatic

@BeforeEach
void initialiseWorker() {
    myUtil = mockStatic(MyUtilClassWithStaticMethods.class);
}

在每个测试用例之后关闭mockedstatic

@AfterEach
public void close() {
    myUtil.close();
}

测试用例中的模拟静态方法行为

@Test
void test() {
    when(MyUtilClassWithStaticMethods.staticMethod(any())).thenReturn(null);
}

您可以在此处返回列表而不是null。

相关问题