blob: 625899cd8a4bd65f5f2ede27194c07e9722702e1 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.sis.metadata.iso.maintenance;
import org.apache.sis.xml.bind.Context;
// Test dependencies
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
import org.apache.sis.test.TestCaseWithLogs;
/**
* Tests {@link DefaultScopeDescription}.
*
* @author Martin Desruisseaux (Geomatys)
*/
public final class DefaultScopeDescriptionTest extends TestCaseWithLogs {
/**
* Creates a new test case.
*/
public DefaultScopeDescriptionTest() {
super(Context.LOGGER);
}
/**
* Tests the various setter methods. Since they are exclusive properties,
* we expect any new property to replace the old one.
*/
@Test
public void testSetExclusiveProperties() {
final var metadata = new DefaultScopeDescription();
metadata.setDataset("A dataset");
assertEquals("A dataset", metadata.getDataset());
loggings.assertNoUnexpectedLog();
metadata.setOther("Other value");
assertEquals("Other value", String.valueOf(metadata.getOther()));
assertNull(metadata.getDataset());
loggings.assertNextLogContains("dataset", "other");
loggings.assertNoUnexpectedLog();
metadata.setDataset(null); // Expected to be a no-op.
assertEquals("Other value", String.valueOf(metadata.getOther()));
assertNull(metadata.getDataset());
metadata.setOther(null);
assertNull(metadata.getOther());
assertNull(metadata.getDataset());
loggings.assertNoUnexpectedLog();
}
}