blob: 3a3802f1ba72a39a292c0a787d3eb0a9e5ea32c9 [file] [log] [blame]
/*
* Copyright (C) 2022 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.adservices.data.adselection;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertThrows;
import android.adservices.adselection.CustomAudienceSignalsFixture;
import android.adservices.common.CommonFixture;
import android.net.Uri;
import org.junit.Test;
import java.time.Clock;
import java.time.Instant;
import java.time.ZoneOffset;
import java.time.temporal.ChronoUnit;
public class DBAdSelectionEntryTest {
private static final Clock CLOCK = Clock.fixed(Instant.now(), ZoneOffset.UTC);
private static final String BUYER_DECISION_LOGIC_JS =
"function test() { return \"hello world\"; }";
private static final Uri RENDER_URI = Uri.parse("http://www.domain.com/advert");
private static final Instant ACTIVATION_TIME = CLOCK.instant().truncatedTo(ChronoUnit.MILLIS);
private static final long AD_SELECTION_ID = 1;
private static final String CONTEXTUAL_SIGNALS = "contextual_signals";
private static final double BID = 5;
private static final CustomAudienceSignals CUSTOM_AUDIENCE_SIGNALS =
CustomAudienceSignalsFixture.aCustomAudienceSignals();
@Test
public void testBuildDBAdSelectionEntry() {
DBAdSelectionEntry dbAdSelectionEntry =
new DBAdSelectionEntry.Builder()
.setAdSelectionId(AD_SELECTION_ID)
.setCustomAudienceSignals(CUSTOM_AUDIENCE_SIGNALS)
.setContextualSignals(CONTEXTUAL_SIGNALS)
.setWinningAdRenderUri(RENDER_URI)
.setWinningAdBid(BID)
.setCreationTimestamp(ACTIVATION_TIME)
.setBuyerDecisionLogicJs(BUYER_DECISION_LOGIC_JS)
.build();
assertEquals(dbAdSelectionEntry.getAdSelectionId(), AD_SELECTION_ID);
assertEquals(dbAdSelectionEntry.getCustomAudienceSignals(), CUSTOM_AUDIENCE_SIGNALS);
assertEquals(dbAdSelectionEntry.getContextualSignals(), CONTEXTUAL_SIGNALS);
assertEquals(dbAdSelectionEntry.getWinningAdRenderUri(), RENDER_URI);
assertEquals(dbAdSelectionEntry.getWinningAdBid(), BID, 0);
assertEquals(dbAdSelectionEntry.getCreationTimestamp(), ACTIVATION_TIME);
assertEquals(dbAdSelectionEntry.getBuyerDecisionLogicJs(), BUYER_DECISION_LOGIC_JS);
}
@Test
public void testFailsToBuildContextualAdWithNonNullBuyerDecisionLogicJs() {
assertThrows(
IllegalArgumentException.class,
() -> {
new DBAdSelectionEntry.Builder()
.setAdSelectionId(AD_SELECTION_ID)
.setContextualSignals(CONTEXTUAL_SIGNALS)
.setWinningAdRenderUri(RENDER_URI)
.setWinningAdBid(BID)
.setCreationTimestamp(ACTIVATION_TIME)
.setBuyerDecisionLogicJs(BUYER_DECISION_LOGIC_JS)
.build();
});
}
@Test
public void testFailsToBuildContextualAdWithNonNullCustomAudienceSignals() {
assertThrows(
IllegalArgumentException.class,
() -> {
new DBAdSelectionEntry.Builder()
.setAdSelectionId(AD_SELECTION_ID)
.setCustomAudienceSignals(CUSTOM_AUDIENCE_SIGNALS)
.setContextualSignals(CONTEXTUAL_SIGNALS)
.setWinningAdRenderUri(RENDER_URI)
.setWinningAdBid(BID)
.setCreationTimestamp(ACTIVATION_TIME)
.build();
});
}
@Test
public void testFailsToBuildDBAdSelectionEntryWithUnsetAdSelectionId() {
assertThrows(
IllegalArgumentException.class,
() -> {
new DBAdSelectionEntry.Builder()
.setAdSelectionId(0)
.setCustomAudienceSignals(CUSTOM_AUDIENCE_SIGNALS)
.setContextualSignals(CONTEXTUAL_SIGNALS)
.setWinningAdRenderUri(RENDER_URI)
.setWinningAdBid(BID)
.setCreationTimestamp(ACTIVATION_TIME)
.setBuyerDecisionLogicJs(BUYER_DECISION_LOGIC_JS)
.build();
});
}
@Test
public void testEqualDBAdSelectionEntryObjectsHaveSameHashCode() {
DBAdSelectionEntry obj1 =
new DBAdSelectionEntry.Builder()
.setAdSelectionId(AD_SELECTION_ID)
.setCustomAudienceSignals(CUSTOM_AUDIENCE_SIGNALS)
.setContextualSignals(CONTEXTUAL_SIGNALS)
.setWinningAdRenderUri(RENDER_URI)
.setWinningAdBid(BID)
.setCreationTimestamp(ACTIVATION_TIME)
.setBuyerDecisionLogicJs(BUYER_DECISION_LOGIC_JS)
.build();
DBAdSelectionEntry obj2 =
new DBAdSelectionEntry.Builder()
.setAdSelectionId(AD_SELECTION_ID)
.setCustomAudienceSignals(CUSTOM_AUDIENCE_SIGNALS)
.setContextualSignals(CONTEXTUAL_SIGNALS)
.setWinningAdRenderUri(RENDER_URI)
.setWinningAdBid(BID)
.setCreationTimestamp(ACTIVATION_TIME)
.setBuyerDecisionLogicJs(BUYER_DECISION_LOGIC_JS)
.build();
CommonFixture.assertHaveSameHashCode(obj1, obj2);
}
@Test
public void testNotEqualDBAdSelectionEntryObjectsHaveDifferentHashCodes() {
DBAdSelectionEntry obj1 =
new DBAdSelectionEntry.Builder()
.setAdSelectionId(AD_SELECTION_ID)
.setCustomAudienceSignals(CUSTOM_AUDIENCE_SIGNALS)
.setContextualSignals(CONTEXTUAL_SIGNALS)
.setWinningAdRenderUri(RENDER_URI)
.setWinningAdBid(BID)
.setCreationTimestamp(ACTIVATION_TIME)
.setBuyerDecisionLogicJs(BUYER_DECISION_LOGIC_JS)
.build();
DBAdSelectionEntry obj2 =
new DBAdSelectionEntry.Builder()
.setAdSelectionId(2)
.setCustomAudienceSignals(CUSTOM_AUDIENCE_SIGNALS)
.setContextualSignals(CONTEXTUAL_SIGNALS)
.setWinningAdRenderUri(RENDER_URI)
.setWinningAdBid(BID)
.setCreationTimestamp(ACTIVATION_TIME)
.setBuyerDecisionLogicJs(BUYER_DECISION_LOGIC_JS)
.build();
DBAdSelectionEntry obj3 =
new DBAdSelectionEntry.Builder()
.setAdSelectionId(AD_SELECTION_ID)
.setCustomAudienceSignals(CUSTOM_AUDIENCE_SIGNALS)
.setContextualSignals("different-signals")
.setWinningAdRenderUri(RENDER_URI)
.setWinningAdBid(BID)
.setCreationTimestamp(ACTIVATION_TIME)
.setBuyerDecisionLogicJs(BUYER_DECISION_LOGIC_JS)
.build();
CommonFixture.assertDifferentHashCode(obj1, obj2, obj3);
}
}