blob: 35be4d15811ff3d84387ad0467e506c1b52cdf0a [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.service.measurement.aggregation;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import androidx.test.filters.SmallTest;
import org.junit.Test;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
/** Unit tests for {@link AggregateTriggerData} */
@SmallTest
public final class AggregateTriggerDataTest {
@Test
public void testCreation() throws Exception {
Map<String, List<String>> attributionFilterMap = new HashMap<>();
attributionFilterMap.put("ctid", Arrays.asList("1", "2"));
AggregateFilterData filterData =
new AggregateFilterData.Builder()
.setAttributionFilterMap(attributionFilterMap).build();
AggregateTriggerData attributionTriggerData =
new AggregateTriggerData.Builder()
.setKey(
new AttributionAggregatableKey.Builder()
.setHighBits(0L).setLowBits(5L).build())
.setSourceKeys(new HashSet<>(
Arrays.asList("campCounts", "campGeoCounts", "campGeoValue")))
.setFilter(filterData)
.build();
assertEquals(attributionTriggerData.getKey().getHighBits().longValue(), 0L);
assertEquals(attributionTriggerData.getKey().getLowBits().longValue(), 5L);
assertEquals(attributionTriggerData.getSourceKeys().size(), 3);
assertTrue(attributionTriggerData.getFilter().isPresent());
AggregateFilterData data = attributionTriggerData.getFilter().get();
assertEquals(2, data.getAttributionFilterMap().get("ctid").size());
}
@Test
public void testDefaults() throws Exception {
AggregateTriggerData attributionTriggerData =
new AggregateTriggerData.Builder().build();
assertNull(attributionTriggerData.getKey());
assertEquals(attributionTriggerData.getSourceKeys().size(), 0);
assertFalse(attributionTriggerData.getFilter().isPresent());
assertFalse(attributionTriggerData.getNotFilter().isPresent());
}
}