com.google.gerrit.acceptance.rest.project.RefAssert.java Source code

Java tutorial

Introduction

Here is the source code for com.google.gerrit.acceptance.rest.project.RefAssert.java

Source

// Copyright (C) 2013 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.google.gerrit.acceptance.rest.project;

import static com.google.common.truth.Truth.assertThat;

import com.google.common.collect.Iterables;
import com.google.gerrit.extensions.api.projects.RefInfo;
import java.util.List;

public class RefAssert {
    public static void assertRefs(List<? extends RefInfo> expectedRefs, List<? extends RefInfo> actualRefs) {
        assertRefNames(refs(expectedRefs), actualRefs);
        for (int i = 0; i < expectedRefs.size(); i++) {
            assertRefInfo(expectedRefs.get(i), actualRefs.get(i));
        }
    }

    public static void assertRefNames(Iterable<String> expectedRefs, Iterable<? extends RefInfo> actualRefs) {
        Iterable<String> actualNames = refs(actualRefs);
        assertThat(actualNames).containsExactlyElementsIn(expectedRefs).inOrder();
    }

    public static void assertRefInfo(RefInfo expected, RefInfo actual) {
        assertThat(actual.ref).isEqualTo(expected.ref);
        if (expected.revision != null) {
            assertThat(actual.revision).named("revision of " + actual.ref).isEqualTo(expected.revision);
        }
        assertThat(toBoolean(actual.canDelete)).named("can delete " + actual.ref)
                .isEqualTo(toBoolean(expected.canDelete));
    }

    private static Iterable<String> refs(Iterable<? extends RefInfo> infos) {
        return Iterables.transform(infos, b -> b.ref);
    }

    private static boolean toBoolean(Boolean b) {
        if (b == null) {
            return false;
        }
        return b.booleanValue();
    }
}