/***************************************************************************** * 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.xmpbox.schema; import java.util.ArrayList; import java.util.Collection; import org.apache.xmpbox.type.Cardinality; import org.apache.xmpbox.type.Types; import org.junit.Before; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.junit.runners.Parameterized.Parameters; @RunWith(Parameterized.class) public class DublinCoreTest extends AbstractSchemaTester { public DublinCoreSchema getSchema() { return xmp.createAndAddDublinCoreSchema(); } @Before public void before() throws Exception { super.before(); } public DublinCoreTest(String fieldName, Types type, Cardinality card) { super(fieldName, type, card); } @Parameters public static Collection<Object[]> initializeParameters() throws Exception { Collection<Object[]> result = new ArrayList<>(); result.add(new Object[] { "contributor", Types.ProperName, Cardinality.Bag }); result.add(new Object[] { "coverage", Types.Text, Cardinality.Simple }); result.add(new Object[] { "creator", Types.ProperName, Cardinality.Seq }); result.add(new Object[] { "date", Types.Date, Cardinality.Seq }); result.add(new Object[] { "format", Types.MIMEType, Cardinality.Simple }); result.add(new Object[] { "identifier", Types.Text, Cardinality.Simple }); result.add(new Object[] { "language", Types.Locale, Cardinality.Bag }); result.add(new Object[] { "publisher", Types.ProperName, Cardinality.Bag }); result.add(new Object[] { "relation", Types.Text, Cardinality.Bag }); result.add(new Object[] { "source", Types.Text, Cardinality.Simple }); result.add(new Object[] { "subject", Types.Text, Cardinality.Bag }); result.add(new Object[] { "type", Types.Text, Cardinality.Bag }); return result; } }