Line data Source code
1 : // Copyright (C) 2020 The Android Open Source Project 2 : // 3 : // Licensed under the Apache License, Version 2.0 (the "License"); 4 : // you may not use this file except in compliance with the License. 5 : // You may obtain a copy of the License at 6 : // 7 : // http://www.apache.org/licenses/LICENSE-2.0 8 : // 9 : // Unless required by applicable law or agreed to in writing, software 10 : // distributed under the License is distributed on an "AS IS" BASIS, 11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 : // See the License for the specific language governing permissions and 13 : // limitations under the License. 14 : 15 : package com.google.gerrit.acceptance.testsuite.account; 16 : 17 : import com.google.auto.value.AutoValue; 18 : import com.google.gerrit.acceptance.testsuite.ThrowingConsumer; 19 : import java.util.Optional; 20 : 21 : /** 22 : * API to invalidate accounts in tests. 23 : * 24 : * <p>This allows to test Gerrit behavior when there is invalid account data in NoteDb (e.g. 25 : * accounts with duplicate emails). 26 : */ 27 : @AutoValue 28 1 : public abstract class TestAccountInvalidation { 29 : /** 30 : * Sets a preferred email for the account for which the account doesn't have an external ID. 31 : * 32 : * <p>This allows to set the same preferred email for multiple accounts so that the email becomes 33 : * ambiguous. 34 : */ 35 : public abstract Optional<String> preferredEmailWithoutExternalId(); 36 : 37 : abstract ThrowingConsumer<TestAccountInvalidation> accountInvalidator(); 38 : 39 : public static Builder builder(ThrowingConsumer<TestAccountInvalidation> accountInvalidator) { 40 1 : return new AutoValue_TestAccountInvalidation.Builder().accountInvalidator(accountInvalidator); 41 : } 42 : 43 : @AutoValue.Builder 44 1 : public abstract static class Builder { 45 : public abstract Builder preferredEmailWithoutExternalId(String preferredEmail); 46 : 47 : abstract Builder accountInvalidator( 48 : ThrowingConsumer<TestAccountInvalidation> accountInvalidator); 49 : 50 : abstract TestAccountInvalidation autoBuild(); 51 : 52 : /** Executes the account invalidation as specified. */ 53 : public void invalidate() { 54 1 : TestAccountInvalidation accountInvalidation = autoBuild(); 55 1 : accountInvalidation.accountInvalidator().acceptAndThrowSilently(accountInvalidation); 56 1 : } 57 : } 58 : }