use of org.prebid.mobile.rendering.bidding.display.VideoView in project prebid-mobile-android by prebid.
the class AdViewManagerTest method whenVideoNotResolved_Return.
@Test
public void whenVideoNotResolved_Return() throws AdException, IllegalAccessException {
VideoView mockVideoView = mock(VideoView.class);
mAdViewManager = new AdViewManager(mContext, mMockAdViewListener, mockVideoView, mock(InterstitialManager.class));
AbstractCreative mockCreative = mock(AbstractCreative.class);
when(mockCreative.isVideo()).thenReturn(true);
when(mockCreative.isResolved()).thenReturn(false);
WhiteBox.field(AdViewManager.class, "mCurrentCreative").set(mAdViewManager, mockCreative);
TransactionManager mockTransactionManager = mock(TransactionManager.class);
when(mockTransactionManager.getCurrentCreative()).thenReturn(mockCreative);
WhiteBox.field(AdViewManager.class, "mTransactionManager").set(mAdViewManager, mockTransactionManager);
ArgumentCaptor exceptionCaptor = ArgumentCaptor.forClass(AdException.class);
mAdViewManager.show();
verify(mMockAdViewListener, never()).viewReadyForImmediateDisplay(any(View.class));
verify(mMockAdViewListener).failedToLoad((AdException) exceptionCaptor.capture());
assertEquals("SDK internal error: Creative has not been resolved yet", ((AdException) exceptionCaptor.getValue()).getMessage());
}
use of org.prebid.mobile.rendering.bidding.display.VideoView in project prebid-mobile-android by prebid.
the class InterstitialManagerTest method displayVideoAdViewInInterstitial_ExecuteVideoAdViewShow.
@Test
public void displayVideoAdViewInInterstitial_ExecuteVideoAdViewShow() {
VideoView mockVideoAdView = mock(VideoView.class);
mSpyInterstitialManager.displayVideoAdViewInInterstitial(mContext, mockVideoAdView);
verify(mMockAdViewDelegate).showInterstitial();
}
Aggregations