Search in sources :

Example 1 with MoPubInterstitialMediationUtils

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

the class KeywordsSetupTest method handleMoPubKeywordsUpdateWithInterstitial_KeyWordsShouldMatchExpected.

@Test
public void handleMoPubKeywordsUpdateWithInterstitial_KeyWordsShouldMatchExpected() {
    MoPubInterstitial moPubInterstitial = new MoPubInterstitial(mActivity, "123456");
    MoPubInterstitialMediationUtils mediationUtils = new MoPubInterstitialMediationUtils(moPubInterstitial);
    HashMap<String, String> bids = new HashMap<>();
    bids.put("hb_pb", "0.50");
    bids.put("hb_cache_id", "123456");
    moPubInterstitial.setKeywords("key1:value1,key2:value2");
    mediationUtils.handleKeywordsUpdate(bids);
    assertEquals("hb_pb:0.50,hb_cache_id:123456,key1:value1,key2:value2", moPubInterstitial.getKeywords());
    mediationUtils.handleKeywordsUpdate(null);
    assertEquals("key1:value1,key2:value2", moPubInterstitial.getKeywords());
}
Also used : MoPubInterstitial(com.mopub.mobileads.MoPubInterstitial) HashMap(java.util.HashMap) MoPubInterstitialMediationUtils(com.mopub.mediation.MoPubInterstitialMediationUtils) Test(org.junit.Test)

Example 2 with MoPubInterstitialMediationUtils

use of com.mopub.mediation.MoPubInterstitialMediationUtils 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)

Aggregations

MoPubInterstitialMediationUtils (com.mopub.mediation.MoPubInterstitialMediationUtils)2 MoPubInterstitial (com.mopub.mobileads.MoPubInterstitial)2 Activity (android.app.Activity)1 MoPubBannerMediationUtils (com.mopub.mediation.MoPubBannerMediationUtils)1 MoPubNativeMediationUtils (com.mopub.mediation.MoPubNativeMediationUtils)1 MoPubRewardedVideoMediationUtils (com.mopub.mediation.MoPubRewardedVideoMediationUtils)1 MoPubView (com.mopub.mobileads.MoPubView)1 MoPubNative (com.mopub.nativeads.MoPubNative)1 HashMap (java.util.HashMap)1 Before (org.junit.Before)1 Test (org.junit.Test)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