Search in sources :

Example 1 with MoPubRewardedVideoMediationUtils

use of com.mopub.mediation.MoPubRewardedVideoMediationUtils in project prebid-mobile-android by prebid.

the class MoPubMediationUtilsMethodsTest method setup.

@Before
public void setup() {
    MockitoAnnotations.openMocks(this);
    mContext = Robolectric.buildActivity(Activity.class).create().get();
    mMoPubView = mock(MoPubView.class);
    bannerUtils = new MoPubBannerMediationUtils(mMoPubView);
    mMediationBannerAdUnit = new MediationBannerAdUnit(mContext, ID, AD_SIZE, bannerUtils);
    mMoPubInterstitial = mock(MoPubInterstitial.class);
    interstitialUtils = new MoPubInterstitialMediationUtils(mMoPubInterstitial);
    mMediationInterstitialAdUnit = new MediationInterstitialAdUnit(mContext, ID, AD_SIZE, interstitialUtils);
    mMoPubNative = mock(MoPubNative.class);
    nativeUtils = new MoPubNativeMediationUtils(mMoPubNativeKeywords, mMoPubNative);
    mMediationNativeAdUnit = new MediationNativeAdUnit(ID, nativeUtils);
    rewardedUtils = new MoPubRewardedVideoMediationUtils(mMoPubRewardedKeywords);
    mMoPubRewardedAdUnit = new MediationRewardedVideoAdUnit(mContext, ID, rewardedUtils);
}
Also used : MoPubNativeMediationUtils(com.mopub.mediation.MoPubNativeMediationUtils) MediationRewardedVideoAdUnit(org.prebid.mobile.rendering.bidding.display.MediationRewardedVideoAdUnit) MoPubInterstitial(com.mopub.mobileads.MoPubInterstitial) MoPubRewardedVideoMediationUtils(com.mopub.mediation.MoPubRewardedVideoMediationUtils) MoPubNative(com.mopub.nativeads.MoPubNative) MediationNativeAdUnit(org.prebid.mobile.rendering.bidding.display.MediationNativeAdUnit) Activity(android.app.Activity) MoPubInterstitialMediationUtils(com.mopub.mediation.MoPubInterstitialMediationUtils) MediationInterstitialAdUnit(org.prebid.mobile.rendering.bidding.display.MediationInterstitialAdUnit) MediationBannerAdUnit(org.prebid.mobile.rendering.bidding.display.MediationBannerAdUnit) MoPubBannerMediationUtils(com.mopub.mediation.MoPubBannerMediationUtils) MoPubView(com.mopub.mobileads.MoPubView) Before(org.junit.Before)

Example 2 with MoPubRewardedVideoMediationUtils

use of com.mopub.mediation.MoPubRewardedVideoMediationUtils in project prebid-mobile-android by prebid.

the class MoPubMediationUtilsWithAdUnitsTest method whenOnResponseReceived_UpdateHashMapAndBidCache.

@Test
public void whenOnResponseReceived_UpdateHashMapAndBidCache() {
    String responseString = TestResponse.getResponse();
    HashMap<String, String> keywordsMap = TestResponse.getKeywordsMap();
    BidResponse bidResponse = new BidResponse(responseString);
    OnFetchCompleteListener mockListener = mock(OnFetchCompleteListener.class);
    MoPubRewardedVideoMediationUtils mediationUtils = mock(MoPubRewardedVideoMediationUtils.class);
    OpenMediationRewardedVideoAdUnit adUnit = new OpenMediationRewardedVideoAdUnit(context, "mopub", mediationUtils);
    WhiteBox.setInternalState(adUnit, "mBidLoader", mMockBidLoader);
    adUnit.fetchDemand(mockListener);
    adUnit.onResponse(bidResponse);
    verify(mockListener).onComplete(FetchDemandResult.SUCCESS);
    verify(mediationUtils).handleKeywordsUpdate(keywordsMap);
}
Also used : MoPubRewardedVideoMediationUtils(com.mopub.mediation.MoPubRewardedVideoMediationUtils) OnFetchCompleteListener(org.prebid.mobile.rendering.bidding.listeners.OnFetchCompleteListener) OpenMediationRewardedVideoAdUnit(org.prebid.mobile.mopub.mock.OpenMediationRewardedVideoAdUnit) BidResponse(org.prebid.mobile.rendering.bidding.data.bid.BidResponse) Test(org.junit.Test)

Aggregations

MoPubRewardedVideoMediationUtils (com.mopub.mediation.MoPubRewardedVideoMediationUtils)2 Activity (android.app.Activity)1 MoPubBannerMediationUtils (com.mopub.mediation.MoPubBannerMediationUtils)1 MoPubInterstitialMediationUtils (com.mopub.mediation.MoPubInterstitialMediationUtils)1 MoPubNativeMediationUtils (com.mopub.mediation.MoPubNativeMediationUtils)1 MoPubInterstitial (com.mopub.mobileads.MoPubInterstitial)1 MoPubView (com.mopub.mobileads.MoPubView)1 MoPubNative (com.mopub.nativeads.MoPubNative)1 Before (org.junit.Before)1 Test (org.junit.Test)1 OpenMediationRewardedVideoAdUnit (org.prebid.mobile.mopub.mock.OpenMediationRewardedVideoAdUnit)1 BidResponse (org.prebid.mobile.rendering.bidding.data.bid.BidResponse)1 MediationBannerAdUnit (org.prebid.mobile.rendering.bidding.display.MediationBannerAdUnit)1 MediationInterstitialAdUnit (org.prebid.mobile.rendering.bidding.display.MediationInterstitialAdUnit)1 MediationNativeAdUnit (org.prebid.mobile.rendering.bidding.display.MediationNativeAdUnit)1 MediationRewardedVideoAdUnit (org.prebid.mobile.rendering.bidding.display.MediationRewardedVideoAdUnit)1 OnFetchCompleteListener (org.prebid.mobile.rendering.bidding.listeners.OnFetchCompleteListener)1