blob: 94f34d1d6f0655c66f26da981bd1640ec62fd884 [file] [log] [blame]
/* Copyright 2004 The Apache Software Foundation
*
* 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 drtcases;
import junit.framework.Test;
import junit.framework.TestSuite;
import junit.framework.Assert;
import junit.framework.TestCase;
import org.apache.xmlbeans.XmlObject;
import com.enumtest.StatusreportDocument;
import com.enumtest.SalesreportDocument;
import com.enumtest.SalesreportDocument.Salesreport.Unit;
import com.enumtest.Quantity;
import com.enumtest.Data;
public class EnumTests extends TestCase
{
public EnumTests(String name) { super(name); }
public static Test suite() { return new TestSuite(EnumTests.class); }
public static void testReport1() throws Exception
{
StatusreportDocument doc = (StatusreportDocument)
XmlObject.Factory.parse(TestEnv.xbeanCase("enumtest/report1.xml"));
Quantity.Enum[] contents = new Quantity.Enum[]
{
Quantity.ALL,
Quantity.ALL,
Quantity.FEW,
Quantity.ALL,
Quantity.MOST,
Quantity.NONE,
Quantity.NONE,
Quantity.NONE,
};
Data[] data = doc.getStatusreport().getStatusArray();
int t = 0;
for (int i = 0; i < data.length; i++)
{
Assert.assertEquals(contents[t++], data[i].enumValue());
// System.out.println("Target: " + data[i].getTarget() + ", value: " + data[i].enumValue());
Assert.assertEquals(contents[t++], data[i].getTarget());
}
}
public static void testReport2() throws Exception
{
StatusreportDocument doc = StatusreportDocument.Factory.newInstance();
StatusreportDocument.Statusreport report = doc.addNewStatusreport();
Data d = report.addNewStatus();
d.set(Quantity.ALL);
d.setTarget(Quantity.ALL);
d = report.addNewStatus();
d.set(Quantity.FEW);
d.setTarget(Quantity.ALL);
d = report.addNewStatus();
d.set(Quantity.MOST);
d.setTarget(Quantity.NONE);
d = report.addNewStatus();
d.set(Quantity.NONE);
d.setTarget(Quantity.NONE);
Quantity.Enum[] contents = new Quantity.Enum[]
{
Quantity.ALL,
Quantity.ALL,
Quantity.FEW,
Quantity.ALL,
Quantity.MOST,
Quantity.NONE,
Quantity.NONE,
Quantity.NONE,
};
Data[] data = doc.getStatusreport().getStatusArray();
int t = 0;
for (int i = 0; i < data.length; i++)
{
Assert.assertEquals(contents[t++], data[i].enumValue());
// System.out.println("Target: " + data[i].getTarget() + ", value: " + data[i].enumValue());
Assert.assertEquals(contents[t++], data[i].getTarget());
}
}
public static void testReport3() throws Exception
{
SalesreportDocument doc = SalesreportDocument.Factory.newInstance();
SalesreportDocument.Salesreport report = doc.addNewSalesreport();
report.addUnit(Unit.ONE);
report.addUnit(Unit.TWO);
report.addUnit(Unit.NINETY_NINE);
report.addUnit(Unit.ONE_HUNDRED);
Unit.Enum[] contents = new Unit.Enum[]
{
Unit.ONE,
Unit.TWO,
Unit.NINETY_NINE,
Unit.ONE_HUNDRED,
};
Unit[] xunits = report.xgetUnitArray();
for (int i = 0; i < xunits.length; i++)
{
Assert.assertEquals(contents[i], xunits[i].enumValue());
}
Unit.Enum[] units = report.getUnitArray();
for (int i = 0; i < units.length; i++)
{
Assert.assertEquals(contents[i], units[i]);
}
}
}