blob: 58f7c91d6a922f3aa9d4f3e92e7edf7b6a0d8311 [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.customaudience;
import android.adservices.common.AdTechIdentifier;
import android.adservices.common.CommonFixture;
import android.adservices.customaudience.CustomAudienceFixture;
import com.android.adservices.common.DBAdDataFixture;
import com.android.adservices.data.customaudience.DBCustomAudience;
public class DBCustomAudienceFixture {
public static DBCustomAudience.Builder getValidBuilderByBuyer(AdTechIdentifier buyer) {
return new DBCustomAudience.Builder()
.setOwner(CustomAudienceFixture.VALID_OWNER)
.setBuyer(buyer)
.setName(CustomAudienceFixture.VALID_NAME)
.setActivationTime(CustomAudienceFixture.VALID_ACTIVATION_TIME)
.setExpirationTime(CustomAudienceFixture.VALID_EXPIRATION_TIME)
.setCreationTime(CommonFixture.FIXED_NOW_TRUNCATED_TO_MILLI)
.setLastAdsAndBiddingDataUpdatedTime(CommonFixture.FIXED_NOW_TRUNCATED_TO_MILLI)
.setUserBiddingSignals(CustomAudienceFixture.VALID_USER_BIDDING_SIGNALS)
.setTrustedBiddingData(
DBTrustedBiddingDataFixture.getValidBuilderByBuyer(buyer).build())
.setBiddingLogicUri(CustomAudienceFixture.getValidBiddingLogicUrlByBuyer(buyer))
.setAds(DBAdDataFixture.getValidDbAdDataListByBuyer(buyer));
}
}