blob: b46a032f4cdd4902205745a793d615db15d68b73 [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.registration;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
import android.content.Context;
import android.net.Uri;
import androidx.test.InstrumentationRegistry;
import androidx.test.filters.SmallTest;
import org.junit.Test;
/**
* Unit tests for {@link TriggerRegistration}
*/
@SmallTest
public final class TriggerRegistrationTest {
private static final String TAG = "TriggerRegistrationTest";
private static final Context sContext = InstrumentationRegistry.getTargetContext();
private TriggerRegistration createExampleResponse() {
return new TriggerRegistration.Builder()
.setTopOrigin(Uri.parse("https://foo.com"))
.setReportingOrigin(Uri.parse("https://bar.com"))
.setTriggerData(1)
.setTriggerPriority(345678)
.setDeduplicationKey(2345678)
.setAggregateTriggerData(
"[{\"key_piece\":\"0x400\",\"source_keys\":[\"campaignCounts\"],"
+ "\"not_filters\":{\"product\":[\"1\"]}},"
+ "{\"key_piece\":\"0xA80\",\"source_keys\":[\"geoValue\"]}]")
.setAggregateValues("{\"campaignCounts\":32768,\"geoValue\":1644}")
.build();
}
void verifyExampleResponse(TriggerRegistration response) {
assertEquals("https://foo.com", response.getTopOrigin().toString());
assertEquals("https://bar.com", response.getReportingOrigin().toString());
assertEquals(1, response.getTriggerData());
assertEquals(345678, response.getTriggerPriority());
assertEquals(2345678, response.getDeduplicationKey().longValue());
assertEquals("[{\"key_piece\":\"0x400\",\"source_keys\":[\"campaignCounts\"],"
+ "\"not_filters\":{\"product\":[\"1\"]}},"
+ "{\"key_piece\":\"0xA80\",\"source_keys\":[\"geoValue\"]}]",
response.getAggregateTriggerData());
assertEquals("{\"campaignCounts\":32768,\"geoValue\":1644}",
response.getAggregateValues());
}
@Test
public void testCreation() throws Exception {
verifyExampleResponse(createExampleResponse());
}
@Test
public void testDefaults() throws Exception {
TriggerRegistration response = new TriggerRegistration.Builder().build();
assertEquals("", response.getTopOrigin().toString());
assertEquals("", response.getReportingOrigin().toString());
assertEquals(0, response.getTriggerData());
assertEquals(0, response.getTriggerPriority());
assertNull(response.getDeduplicationKey());
assertNull(response.getAggregateTriggerData());
assertNull(response.getAggregateValues());
}
}