use of com.waz.api.ZMessagingApi in project wire-android by wireapp.
the class SpotifyController method setActivity.
@Override
public void setActivity(Activity activity) {
final IStoreFactory storeFactory = ZApplication.from(activity).getStoreFactory();
if (storeFactory == null || storeFactory.isTornDown()) {
return;
}
final IZMessagingApiStore zMessagingApiStore = storeFactory.getZMessagingApiStore();
final ZMessagingApi api = zMessagingApiStore.getApi();
this.spotify = api.getSpotify();
}
use of com.waz.api.ZMessagingApi in project wire-android by wireapp.
the class SingleOtrClientFragmentTest method setupMocksForCurrentOtrClient.
private void setupMocksForCurrentOtrClient(Self mockSelf, Fingerprint mockFingerprint) {
IZMessagingApiStore mockZMessagingApiStore = activity.getStoreFactory().getZMessagingApiStore();
ZMessagingApi mockZMessagingApi = mock(ZMessagingApi.class);
when(mockZMessagingApiStore.getApi()).thenReturn(mockZMessagingApi);
when(mockZMessagingApi.getSelf()).thenReturn(mockSelf);
UiSignal<OtrClient> otrClientUiSignal = MockHelper.mockUiSignal();
when(mockSelf.getOtrClient()).thenReturn(otrClientUiSignal);
final OtrClient mockOtrClient = mock(OtrClient.class);
MockHelper.mockSubscription(otrClientUiSignal, mockOtrClient);
UiSignal<Fingerprint> fingerprintUiSignal = MockHelper.mockUiSignal();
when(mockOtrClient.getFingerprint()).thenReturn(fingerprintUiSignal);
MockHelper.mockSubscription(fingerprintUiSignal, mockFingerprint);
when(mockFingerprint.getRawBytes()).thenReturn(DEFAULT_FINGERPRINT.getBytes());
// Not really needed, as user is not used for current device
IProfileStore mockProfileStore = activity.getStoreFactory().getProfileStore();
User mockUser = mock(User.class);
when(mockProfileStore.getSelfUser()).thenReturn(mockUser);
}
use of com.waz.api.ZMessagingApi in project wire-android by wireapp.
the class UsernamesTakeOverScreenTest method verifyUserHasTakeOverScreenWithUsername.
@Test
public void verifyUserHasTakeOverScreenWithUsername() {
activity.setOnChooseUsernameChosenCalled(false);
activity.setOnKeepUsernameCalled(false);
Self mockSelf = mock(Self.class);
when(mockSelf.getName()).thenReturn(DEFAULT_DISPLAY_NAME);
when(mockSelf.getUsername()).thenReturn("");
IZMessagingApiStore mockZMessagingApiStore = activity.getStoreFactory().getZMessagingApiStore();
ZMessagingApi mockZMessagingApi = mock(ZMessagingApi.class);
when(mockZMessagingApiStore.getApi()).thenReturn(mockZMessagingApi);
when(mockZMessagingApi.getSelf()).thenReturn(mockSelf);
attachFragment(FirstTimeAssignUsernameFragment.newInstance(mockSelf.getName(), DEFAULT_DISPLAY_USERNAME), FirstTimeAssignUsernameFragment.TAG);
onView(withId(R.id.ttv__name)).check(matches(withText(mockSelf.getName())));
onView(withId(R.id.ttv__username)).check(matches(withText(StringUtils.formatHandle(DEFAULT_DISPLAY_USERNAME))));
}
Aggregations