blob: 8ac14111a3d3a9219c93b87a4e8191731b508eff [file] [log] [blame]
/*
* Copyright 2014-present Facebook, Inc.
*
* 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.facebook.buck.apple;
import com.facebook.buck.rules.SourcePath;
import com.facebook.buck.rules.coercer.Either;
import com.facebook.buck.util.immutables.BuckStyleImmutable;
import com.google.common.base.Optional;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSortedMap;
import org.immutables.value.Value;
/**
* Parameters that can affect how tests are linked and bundled.
*
* Tests with the same parameters should be able to be linked and bundled into a single executable.
*/
@Value.Immutable(prehash = true)
@BuckStyleImmutable
public abstract class AppleTestBundleParamsKey {
public abstract Optional<SourcePath> getInfoPlist();
public abstract Either<AppleBundleExtension, String> getExtension();
public abstract Optional<ImmutableSortedMap<String, ImmutableMap<String, String>>> getConfigs();
public static AppleTestBundleParamsKey fromAppleTestDescriptionArg(AppleTestDescription.Arg arg) {
return ImmutableAppleTestBundleParamsKey.builder()
.setInfoPlist(arg.infoPlist)
.setConfigs(arg.configs)
.setExtension(arg.extension)
.build();
}
}