blob: b0689f0ad04bad95064c25740cbee9ab4fc37e5b [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 android.adservices.common;
import static com.google.common.truth.Truth.assertThat;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertThrows;
import android.net.Uri;
import android.os.Parcel;
import androidx.test.filters.SmallTest;
import org.junit.Test;
/** Unit tests for {@link AdData} */
@SmallTest
public final class AdDataTest {
private static final Uri VALID_RENDER_URL =
new Uri.Builder().path("valid.example.com/testing/hello").build();
private static final String VALID_METADATA = "{'example': 'metadata', 'valid': true}";
@Test
public void testBuildValidAdDataSuccess() {
AdData validAdData = new AdData(VALID_RENDER_URL, VALID_METADATA);
assertThat(validAdData.getRenderUri()).isEqualTo(VALID_RENDER_URL);
assertThat(validAdData.getMetadata()).isEqualTo(VALID_METADATA);
}
@Test
public void testParcelValidAdDataSuccess() {
AdData validAdData = new AdData(VALID_RENDER_URL, VALID_METADATA);
Parcel p = Parcel.obtain();
validAdData.writeToParcel(p, 0);
p.setDataPosition(0);
AdData fromParcel = AdData.CREATOR.createFromParcel(p);
assertThat(fromParcel.getRenderUri()).isEqualTo(VALID_RENDER_URL);
assertThat(fromParcel.getMetadata()).isEqualTo(VALID_METADATA);
}
@Test
public void testBuildNullUrlAdDataFails() {
assertThrows(NullPointerException.class, () -> {
new AdData(null, VALID_METADATA);
});
}
@Test
public void testBuildNullMetadataAdDataFails() {
assertThrows(NullPointerException.class, () -> {
new AdData(VALID_RENDER_URL, null);
});
}
@Test
public void testAdDataToString() {
AdData obj =
new AdData.Builder()
.setRenderUri(VALID_RENDER_URL)
.setMetadata(VALID_METADATA)
.build();
assertEquals(
String.format(
"AdData{mRenderUri=%s, mMetadata='%s'}", VALID_RENDER_URL, VALID_METADATA),
obj.toString());
}
@Test
public void testAdDataDescribeContent() {
AdData obj =
new AdData.Builder()
.setRenderUri(VALID_RENDER_URL)
.setMetadata(VALID_METADATA)
.build();
assertEquals(0, obj.describeContents());
}
}