gpt4 book ai didi

unit-testing - 如何创建 Single.just(Void)

转载 作者:行者123 更新时间:2023-12-03 14:49:53 25 4
gpt4 key购买 nike

我正在为我的应用程序编写一些单元测试用例。我要 mock MongoClient update方法,但更新返回 Single<Void> .

when(mongoClient.rxUpdate(anyString(), any(JsonObject.class), any(JsonObject.class)))
.thenReturn(Single.just(Void))

现在 Single.just(Void)不起作用,正确的做法是什么?

- 更新 -

所以我正在为 updateUserProfile 编写单元测试方法,为此我 mock 了 service .但是 service.updateAccount方法返回是我无法模拟的。
//Controller class
public void updateUserProfile(RoutingContext routingContext){
// some code
service.updateAccount(query, update)
.subscribe(r -> routingContext.response().end());
}

//Service Class
public Single<Void> updateAccount(JsonObject query, JsonObject update){
return mongoClient.rxUpdate("accounts", query, update);
}

因为返回类型为 mongoClient.rxUpdateSingle<Void> ,我无法 mock 那部分。

现在我想出的解决方法是:
public Single<Boolean> updateAccount(JsonObject query, JsonObject update){
return mongoClient.rxUpdate("accounts", query, update).map(_void -> true);
}

但这只是一种hacky方式,我想知道我如何才能准确地创建 Single<Void>

最佳答案

有一个方法返回 Single<Void>可能会引起一些担忧,因为一些用户已经在评论中表达了他们的看法。

但是如果你坚持这个并且你真的需要模拟它(无论出于何种原因),肯定有方法创建 Single<Void>例如,您可以使用 Single 类的 create 方法:

Single<Void> singleVoid = Single.create(singleSubscriber -> {});

when(test.updateAccount(any(JsonObject.class), any(JsonObject.class))).thenReturn(singleVoid);

Single<Void> result = test.updateAccount(null, null);

result.subscribe(
aVoid -> System.out.println("incoming!") // This won't be executed.
);

请注意:您将无法实际发送单个项目,因为 Void 无法在没有反射的情况下实例化。

在某些情况下最终可能会起作用的一个技巧是省略泛型类型参数并改为发送 Object,但这很容易导致 ClassCastException。我不建议使用这个:
Single singleObject = Single.just(new Object());

when(test.updateAccount(any(JsonObject.class), any(JsonObject.class))).thenReturn(singleObject);

Single<Void> result = test.updateAccount(null, null);

// This is going to throw an exception:
// "java.base/java.lang.Object cannot be cast to java.base/java.lang.Void"
result.subscribe(
aVoid -> System.out.println("incoming:" + aVoid)
);

当然,您也可以使用反射(正如 Minato Namikaze 已经建议的那样):
Constructor<Void> constructor = Void.class.getDeclaredConstructor(new Class[0]);
constructor.setAccessible(true);
Void instance = constructor.newInstance();

Single<Void> singleVoidMock = Single.just(instance);

when(test.updateAccount(any(JsonObject.class), any(JsonObject.class))).thenReturn(singleVoidMock);

Single<Void> result = test.updateAccount(null, null);

result.subscribe(
aVoid -> System.out.println("incoming:" + aVoid) // Prints: "incoming:java.lang.Void@4fb3ee4e"
);

关于unit-testing - 如何创建 Single.just(Void),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48556082/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com