Line data Source code
1 : // Copyright (C) 2017 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.extensions.common.testing; 16 : 17 : import static com.google.common.truth.Truth.assertAbout; 18 : 19 : import com.google.common.truth.ComparableSubject; 20 : import com.google.common.truth.FailureMetadata; 21 : import com.google.common.truth.IntegerSubject; 22 : import com.google.common.truth.Subject; 23 : import com.google.gerrit.extensions.common.FileInfo; 24 : 25 : public class FileInfoSubject extends Subject { 26 : 27 : public static FileInfoSubject assertThat(FileInfo fileInfo) { 28 2 : return assertAbout(FileInfoSubject::new).that(fileInfo); 29 : } 30 : 31 : private final FileInfo fileInfo; 32 : 33 : private FileInfoSubject(FailureMetadata failureMetadata, FileInfo fileInfo) { 34 2 : super(failureMetadata, fileInfo); 35 2 : this.fileInfo = fileInfo; 36 2 : } 37 : 38 : public IntegerSubject linesInserted() { 39 2 : isNotNull(); 40 2 : return check("linesInserted").that(fileInfo.linesInserted); 41 : } 42 : 43 : public IntegerSubject linesDeleted() { 44 2 : isNotNull(); 45 2 : return check("linesDeleted").that(fileInfo.linesDeleted); 46 : } 47 : 48 : public IntegerSubject oldMode() { 49 2 : isNotNull(); 50 2 : return check("oldMode").that(fileInfo.oldMode); 51 : } 52 : 53 : public IntegerSubject newMode() { 54 2 : isNotNull(); 55 2 : return check("newMode").that(fileInfo.newMode); 56 : } 57 : 58 : public ComparableSubject<Character> status() { 59 2 : isNotNull(); 60 2 : return check("status").that(fileInfo.status); 61 : } 62 : }