Change to lambda

This commit is contained in:
Benoit Marty 2024-05-22 18:16:53 +02:00
parent c0fccae12e
commit 310c309e1e
4 changed files with 7 additions and 7 deletions

View file

@ -141,7 +141,7 @@ class DefaultPushServiceTest {
pushProviders = setOf(aCurrentPushProvider, aPushProvider), pushProviders = setOf(aCurrentPushProvider, aPushProvider),
getCurrentPushProvider = FakeGetCurrentPushProvider(currentPushProvider = aCurrentPushProvider.name), getCurrentPushProvider = FakeGetCurrentPushProvider(currentPushProvider = aCurrentPushProvider.name),
userPushStoreFactory = FakeUserPushStoreFactory( userPushStoreFactory = FakeUserPushStoreFactory(
userPushStore = userPushStore, userPushStore = { userPushStore },
), ),
) )
val result = defaultPushService.registerWith(client, aPushProvider, aDistributor) val result = defaultPushService.registerWith(client, aPushProvider, aDistributor)
@ -170,7 +170,7 @@ class DefaultPushServiceTest {
pushProviders = setOf(aCurrentPushProvider, aPushProvider), pushProviders = setOf(aCurrentPushProvider, aPushProvider),
getCurrentPushProvider = FakeGetCurrentPushProvider(currentPushProvider = aCurrentPushProvider.name), getCurrentPushProvider = FakeGetCurrentPushProvider(currentPushProvider = aCurrentPushProvider.name),
userPushStoreFactory = FakeUserPushStoreFactory( userPushStoreFactory = FakeUserPushStoreFactory(
userPushStore = userPushStore, userPushStore = { userPushStore },
), ),
) )
val result = defaultPushService.registerWith(client, aPushProvider, aDistributor) val result = defaultPushService.registerWith(client, aPushProvider, aDistributor)

View file

@ -89,7 +89,7 @@ class DefaultPusherSubscriberTest {
getSecretForUserResult = { A_SECRET }, getSecretForUserResult = { A_SECRET },
), ),
userPushStoreFactory = FakeUserPushStoreFactory( userPushStoreFactory = FakeUserPushStoreFactory(
userPushStore = userPushStore, userPushStore = { userPushStore },
), ),
) )
val result = defaultPusherSubscriber.registerPusher( val result = defaultPusherSubscriber.registerPusher(
@ -155,7 +155,7 @@ class DefaultPusherSubscriberTest {
getSecretForUserResult = { A_SECRET }, getSecretForUserResult = { A_SECRET },
), ),
userPushStoreFactory = FakeUserPushStoreFactory( userPushStoreFactory = FakeUserPushStoreFactory(
userPushStore = userPushStore, userPushStore = { userPushStore },
), ),
) )
val result = defaultPusherSubscriber.unregisterPusher( val result = defaultPusherSubscriber.unregisterPusher(

View file

@ -257,7 +257,7 @@ class DefaultPushHandlerTest {
incrementPushCounterResult() incrementPushCounterResult()
} }
}, },
userPushStoreFactory = FakeUserPushStoreFactory(userPushStore), userPushStoreFactory = FakeUserPushStoreFactory { userPushStore },
pushClientSecret = pushClientSecret, pushClientSecret = pushClientSecret,
buildMeta = buildMeta, buildMeta = buildMeta,
matrixAuthenticationService = matrixAuthenticationService, matrixAuthenticationService = matrixAuthenticationService,

View file

@ -21,9 +21,9 @@ import io.element.android.libraries.pushstore.api.UserPushStore
import io.element.android.libraries.pushstore.api.UserPushStoreFactory import io.element.android.libraries.pushstore.api.UserPushStoreFactory
class FakeUserPushStoreFactory( class FakeUserPushStoreFactory(
val userPushStore: UserPushStore = FakeUserPushStore() val userPushStore: (SessionId) -> UserPushStore = { FakeUserPushStore() }
) : UserPushStoreFactory { ) : UserPushStoreFactory {
override fun getOrCreate(userId: SessionId): UserPushStore { override fun getOrCreate(userId: SessionId): UserPushStore {
return userPushStore return userPushStore(userId)
} }
} }