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; 16 : 17 : import static com.google.common.truth.Truth.assertThat; 18 : 19 : import com.google.common.util.concurrent.AtomicLongMap; 20 : import com.google.gerrit.entities.Account; 21 : import com.google.gerrit.extensions.common.AccountInfo; 22 : import com.google.gerrit.extensions.events.AccountIndexedListener; 23 : 24 : /** Checks if an account is indexed the correct number of times. */ 25 2 : public class AccountIndexedCounter implements AccountIndexedListener { 26 2 : private final AtomicLongMap<Integer> countsByAccount = AtomicLongMap.create(); 27 : 28 : @Override 29 : public void onAccountIndexed(int id) { 30 2 : countsByAccount.incrementAndGet(id); 31 2 : } 32 : 33 : public void clear() { 34 2 : countsByAccount.clear(); 35 2 : } 36 : 37 : public void assertReindexOf(TestAccount testAccount) { 38 2 : assertReindexOf(testAccount, 1); 39 2 : } 40 : 41 : public void assertReindexOf(AccountInfo accountInfo) { 42 1 : assertReindexOf(Account.id(accountInfo._accountId), 1); 43 1 : } 44 : 45 : public void assertReindexOf(TestAccount testAccount, long expectedCount) { 46 2 : assertThat(countsByAccount.asMap()).containsExactly(testAccount.id().get(), expectedCount); 47 2 : clear(); 48 2 : } 49 : 50 : public void assertReindexOf(Account.Id accountId, long expectedCount) { 51 1 : assertThat(countsByAccount.asMap()).containsEntry(accountId.get(), expectedCount); 52 1 : countsByAccount.remove(accountId.get()); 53 1 : } 54 : 55 : public void assertNoReindex() { 56 2 : assertThat(countsByAccount.asMap()).isEmpty(); 57 2 : } 58 : }