File: LineCoverageTest.java

package info (click to toggle)
bazel-bootstrap 4.2.3%2Bds-9
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 85,476 kB
  • sloc: java: 721,710; sh: 55,859; cpp: 35,359; python: 12,139; xml: 295; objc: 269; makefile: 113; ansic: 106; ruby: 3
file content (104 lines) | stat: -rwxr-xr-x 3,716 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// Copyright 2018 The Bazel Authors. All rights reserved.
//
// 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.devtools.coverageoutputgenerator;

import static com.google.common.truth.Truth.assertThat;
import static org.junit.Assert.fail;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;

/** Unit tests for {@LineExecutionCoverageData}. */
@RunWith(JUnit4.class)
public class LineCoverageTest {
  private static final int LINE1_NR = 10;
  private static final int LINE1_EXECUTION_COUNT = 10;
  private static final String LINE1_CHECKSUM = "90345njksdf2";
  private static final int LINE1_OTHER_TRACEFILE_EXECUTION_COUNT = 5;

  private static final int LINE2_NR = 20;
  private static final int LINE2_EXECUTION_COUNT = 3;
  private static final String LINE2_CHECKSUM = null;
  private static final int LINE2_OTHER_TRACEFILE_EXECUTION_COUNT = 5;

  static LineCoverage getLine1CoverageData() {
    return LineCoverage.create(LINE1_NR, LINE1_EXECUTION_COUNT, LINE1_CHECKSUM);
  }

  static LineCoverage getLine1CoverageDataDifferentChecksum() {
    return LineCoverage.create(LINE1_NR, LINE1_EXECUTION_COUNT, LINE2_CHECKSUM);
  }

  static LineCoverage getLine1CoverageDataOtherTracefile() {
    return LineCoverage.create(LINE1_NR, LINE1_OTHER_TRACEFILE_EXECUTION_COUNT, LINE1_CHECKSUM);
  }

  static LineCoverage getLine2CoverageData() {
    return LineCoverage.create(LINE2_NR, LINE2_EXECUTION_COUNT, LINE2_CHECKSUM);
  }

  static LineCoverage getLine2CoverageDataOtherTracefile() {
    return LineCoverage.create(LINE2_NR, LINE2_OTHER_TRACEFILE_EXECUTION_COUNT, LINE2_CHECKSUM);
  }

  @Test
  public void testMergeLine1() {
    LineCoverage line1 = getLine1CoverageData();
    LineCoverage line1OtherTracefile = getLine1CoverageDataOtherTracefile();
    LineCoverage merged = LineCoverage.merge(line1, line1OtherTracefile);

    assertThat(merged.lineNumber()).isEqualTo(LINE1_NR);
    assertThat(merged.executionCount())
        .isEqualTo(LINE1_EXECUTION_COUNT + LINE1_OTHER_TRACEFILE_EXECUTION_COUNT);
    assertThat(merged.checksum()).isEqualTo(LINE1_CHECKSUM);
  }

  @Test
  public void testMergeLine2() {
    LineCoverage line2 = getLine2CoverageData();
    LineCoverage line2OtherTracefile = getLine2CoverageDataOtherTracefile();
    LineCoverage merged = LineCoverage.merge(line2, line2OtherTracefile);

    assertThat(merged.lineNumber()).isEqualTo(LINE2_NR);
    assertThat(merged.executionCount())
        .isEqualTo(LINE2_EXECUTION_COUNT + LINE2_OTHER_TRACEFILE_EXECUTION_COUNT);
    assertThat(merged.checksum()).isEqualTo(null);
  }

  @Test
  public void testMergeLine1WithLine2() {
    LineCoverage line1 = getLine1CoverageData();
    LineCoverage line2 = getLine2CoverageData();
    try {
      LineCoverage.merge(line1, line2);
    } catch (AssertionError er) {
      return;
    }
    fail();
  }

  @Test
  public void testMergeLine1DifferentChecksum() {
    LineCoverage line1 = getLine1CoverageData();
    LineCoverage line1DiffrentChecksum = getLine1CoverageDataDifferentChecksum();
    try {
      LineCoverage.merge(line1, line1DiffrentChecksum);
    } catch (AssertionError er) {
      return;
    }
    fail();
  }
}