/* * Copyright 2016-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.rules.coercer; import static org.junit.Assert.assertThat; import com.facebook.buck.io.ProjectFilesystem; import com.facebook.buck.rules.TestCellBuilder; import com.facebook.buck.testutil.FakeProjectFilesystem; import java.nio.file.Path; import java.nio.file.Paths; import java.util.Optional; import org.hamcrest.Matchers; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; public class OptionalTypeCoercerTest { private static final ProjectFilesystem FILESYSTEM = new FakeProjectFilesystem(); private static final Path PATH_RELATIVE_TO_PROJECT_ROOT = Paths.get(""); @Rule public ExpectedException exception = ExpectedException.none(); @Test public void nullIsAbsent() throws CoerceFailedException { OptionalTypeCoercer<Void> coercer = new OptionalTypeCoercer<>(new IdentityTypeCoercer<>(Void.class)); Optional<Void> result = coercer.coerce( TestCellBuilder.createCellRoots(FILESYSTEM), FILESYSTEM, PATH_RELATIVE_TO_PROJECT_ROOT, null); assertThat(result, Matchers.equalTo(Optional.empty())); } @Test public void nonNullIsPresent() throws CoerceFailedException { OptionalTypeCoercer<String> coercer = new OptionalTypeCoercer<>(new IdentityTypeCoercer<>(String.class)); Optional<String> result = coercer.coerce( TestCellBuilder.createCellRoots(FILESYSTEM), FILESYSTEM, PATH_RELATIVE_TO_PROJECT_ROOT, "something"); assertThat(result, Matchers.equalTo(Optional.of("something"))); } @Test public void nestedOptionals() throws CoerceFailedException { exception.expect(IllegalArgumentException.class); exception.expectMessage("Nested optional fields are ambiguous."); new OptionalTypeCoercer<>(new OptionalTypeCoercer<>(new IdentityTypeCoercer<>(Void.class))); } }