aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/analysis/platform/PlatformProvidersTest.java
blob: 235532c2d8cac893f9e62e882eeb1555e2fc8d59 (plain)
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
// Copyright 2017 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.build.lib.analysis.platform;

import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.testing.EqualsTester;
import com.google.devtools.build.lib.analysis.util.BuildViewTestCase;
import com.google.devtools.build.lib.events.Location;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;

/** Tests of platform providers. */
@RunWith(JUnit4.class)
public class PlatformProvidersTest extends BuildViewTestCase {
  @Rule public ExpectedException expectedException = ExpectedException.none();

  @Test
  public void constraintSetting_equalsTester() {
    new EqualsTester()
        .addEqualityGroup(
            ConstraintSettingInfo.create(makeLabel("//constraint:basic")),
            ConstraintSettingInfo.create(makeLabel("//constraint:basic")))
        .addEqualityGroup(ConstraintSettingInfo.create(makeLabel("//constraint:other")))
        .testEquals();
  }

  @Test
  public void constraintValue_equalsTester() {
    ConstraintSettingInfo setting1 = ConstraintSettingInfo.create(makeLabel("//constraint:basic"));
    ConstraintSettingInfo setting2 = ConstraintSettingInfo.create(makeLabel("//constraint:other"));
    new EqualsTester()
        .addEqualityGroup(
            // Base case.
            ConstraintValueInfo.create(setting1, makeLabel("//constraint:value")),
            ConstraintValueInfo.create(setting1, makeLabel("//constraint:value")))
        .addEqualityGroup(
            // Different label.
            ConstraintValueInfo.create(setting1, makeLabel("//constraint:otherValue")))
        .addEqualityGroup(
            // Different setting.
            ConstraintValueInfo.create(setting2, makeLabel("//constraint:ovalue")))
        .testEquals();
  }

  @Test
  public void platformInfo_overlappingConstraintsError() throws Exception {
    ConstraintSettingInfo setting = ConstraintSettingInfo.create(makeLabel("//constraint:basic"));

    ConstraintValueInfo value1 = ConstraintValueInfo.create(setting, makeLabel("//constraint:foo"));
    ConstraintValueInfo value2 = ConstraintValueInfo.create(setting, makeLabel("//constraint:bar"));

    PlatformInfo.Builder builder =
        PlatformInfo.builder().addConstraint(value1).addConstraint(value2);

    expectedException.expect(PlatformInfo.DuplicateConstraintException.class);
    expectedException.expectMessage(
        "Duplicate constraint_values for constraint_setting //constraint:basic: "
            + "//constraint:foo, //constraint:bar");
    builder.build();
  }

  @Test
  public void platformInfo_equalsTester() throws Exception {
    ConstraintSettingInfo setting1 = ConstraintSettingInfo.create(makeLabel("//constraint:basic"));
    ConstraintSettingInfo setting2 = ConstraintSettingInfo.create(makeLabel("//constraint:other"));

    ConstraintValueInfo value1 =
        ConstraintValueInfo.create(setting1, makeLabel("//constraint:value1"));
    ConstraintValueInfo value2 =
        ConstraintValueInfo.create(setting2, makeLabel("//constraint:value2"));
    ConstraintValueInfo value3 =
        ConstraintValueInfo.create(setting2, makeLabel("//constraint:value3"));

    new EqualsTester()
        .addEqualityGroup(
            // Base case.
            PlatformInfo.builder().addConstraint(value1).addConstraint(value2).build(),
            PlatformInfo.builder().addConstraint(value1).addConstraint(value2).build(),
            PlatformInfo.builder()
                .addConstraint(value1)
                .addConstraint(value2)
                .addRemoteExecutionProperty("key", "val") // execution properties are ignored.
                .build())
        .addEqualityGroup(
            // Extra constraint.
            PlatformInfo.builder().addConstraint(value1).addConstraint(value3).build())
        .addEqualityGroup(
            // Missing constraint.
            PlatformInfo.builder().addConstraint(value1).build())
        .testEquals();
  }

  @Test
  public void toolchainInfo_equalsTester() throws Exception {
    ConstraintSettingInfo setting1 = ConstraintSettingInfo.create(makeLabel("//constraint:basic"));
    ConstraintSettingInfo setting2 = ConstraintSettingInfo.create(makeLabel("//constraint:other"));

    ConstraintValueInfo value1 =
        ConstraintValueInfo.create(setting1, makeLabel("//constraint:value1"));
    ConstraintValueInfo value2 =
        ConstraintValueInfo.create(setting2, makeLabel("//constraint:value2"));
    ConstraintValueInfo value3 =
        ConstraintValueInfo.create(setting2, makeLabel("//constraint:value3"));

    new EqualsTester()
        .addEqualityGroup(
            // Base case.
            new ToolchainInfo(
                ImmutableList.of(value1, value2),
                ImmutableList.of(value1, value3),
                ImmutableMap.<String, Object>of("foo", "val1", "bar", "val2"),
                Location.BUILTIN),
            new ToolchainInfo(
                ImmutableList.of(value1, value2),
                ImmutableList.of(value1, value3),
                ImmutableMap.<String, Object>of("foo", "val1", "bar", "val2"),
                Location.BUILTIN))
        .addEqualityGroup(
            // Different target constraints.
            new ToolchainInfo(
                ImmutableList.of(value1, value2),
                ImmutableList.of(value1, value2),
                ImmutableMap.<String, Object>of("foo", "val1", "bar", "val2"),
                Location.BUILTIN))
        .addEqualityGroup(
            // Different data.
            new ToolchainInfo(
                ImmutableList.of(value1, value2),
                ImmutableList.of(value1, value3),
                ImmutableMap.<String, Object>of("foo", "val1", "bar", "val3"),
                Location.BUILTIN))
        .testEquals();
  }
}