/* * Copyright 1998-2009 University Corporation for Atmospheric Research/Unidata * * Portions of this software were developed by the Unidata Program at the * University Corporation for Atmospheric Research. * * Access and use of this software shall impose the following obligations * and understandings on the user. The user is granted the right, without * any fee or cost, to use, copy, modify, alter, enhance and distribute * this software, and any derivative works thereof, and its supporting * documentation for any purpose whatsoever, provided that this entire * notice appears in all copies of the software, derivative works and * supporting documentation. Further, UCAR requests that the user credit * UCAR/Unidata in any publications that result from the use of this * software or in any product that includes this software. The names UCAR * and/or Unidata, however, may not be used in any advertising or publicity * to endorse or promote any products or commercial entity unless specific * written permission is obtained from UCAR/Unidata. The user also * understands that UCAR/Unidata is not obligated to provide the user with * any support, consulting, training or assistance of any kind with regard * to the use, operation and performance of this software nor to provide * the user with any updates, revisions, new versions or "bug fixes." * * THIS SOFTWARE IS PROVIDED BY UCAR/UNIDATA "AS IS" AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL UCAR/UNIDATA BE LIABLE FOR ANY SPECIAL, * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION * WITH THE ACCESS, USE OR PERFORMANCE OF THIS SOFTWARE. */ package ucar.nc2.dods; import java.io.IOException; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Test; import org.junit.experimental.categories.Category; import ucar.ma2.Array; import ucar.ma2.ArrayFloat; import ucar.ma2.ArrayObject; import ucar.ma2.DataType; import ucar.ma2.Index; import ucar.ma2.IndexIterator; import ucar.ma2.InvalidRangeException; import ucar.ma2.StructureData; import ucar.ma2.StructureMembers; import ucar.nc2.Structure; import ucar.nc2.Variable; import ucar.unidata.util.test.category.NeedsExternalResource; /** Test nc2 dods in the JUnit framework. * Dataset { Structure { Byte b; Int32 i32; UInt32 ui32; Int16 i16; Structure { UInt16 ui16[10]; Float32 f32; Float64 f64; String s; Url u[5]; } ss; } types[10]; } WackyArray02; */ @Category(NeedsExternalResource.class) public class TestDODSArrayOfStructureNested { private static DODSNetcdfFile dodsfile; @BeforeClass public static void setUp() throws Exception { DODSNetcdfFile.setPreload(false); dodsfile = TestDODSRead.open("test.53"); DODSNetcdfFile.setPreload(true); } @AfterClass public static void tearDown() throws Exception { dodsfile.close(); } @Test public void testScalarReadByte() throws IOException { Variable v = null; Array a = null; // byte assert null != (v = dodsfile.findVariable("types")); assert v instanceof Structure; Structure s = (Structure) v; assert null != (v = s.findVariable("ss")); assert v instanceof Structure; Structure ss = (Structure) v; assert(null != (v = ss.findVariable("f32"))); assert v.getShortName().equals("f32"); assert v.getRank() == 0; assert v.getSize() == 1; assert v.getDataType() == DataType.FLOAT; a = v.read(); assert a.getRank() == 1; assert a.getSize() == 10; assert a.getElementType() == float.class; assert a instanceof ArrayFloat.D1; float val = a.getFloat( a.getIndex()); assert (val == 0.0); } @Test public void testReadScalarMemberVariable() throws IOException { Variable v = dodsfile.findVariable("types.ss.ui16"); assert v != null; assert v.getRank() == 1; assert v.getSize() == 10; assert v.getDataType() == DataType.SHORT : v.getDataType(); assert v.isUnsigned(); Array a = v.read(); Index ima = a.getIndex(); assert a.getRank() == 2; assert a.getSize() == 100; assert a.getInt( ima) == 0; v = dodsfile.findVariable("types.ss.s"); assert v != null; assert v.getRank() == 0; assert v.getDataType() == DataType.STRING : v.getDataType(); a = v.read(); assert a.getRank() == 1; assert a instanceof ArrayObject.D1 : a.getClass().getName(); ArrayObject.D1 a0 = (ArrayObject.D1) a; assert a0.get(0).equals("This is a data test string (pass 0)."); } @Test public void testReadArrayOfStructs() throws IOException, InvalidRangeException { Variable v = dodsfile.findVariable("types"); assert v != null; assert v instanceof DODSStructure; assert v.getRank() == 1; assert v.getDataType() == DataType.STRUCTURE; DODSStructure struct = (DODSStructure) v; Array data = struct.read(); assert data.getRank() == 1; assert data.getElementType().equals(StructureData.class); IndexIterator ii = data.getIndexIterator(); while (ii.hasNext()) { Object d = ii.next(); assert d instanceof StructureData : d.getClass().getName(); } } @Test public void testRead1DArrayOfStructs() throws IOException, InvalidRangeException { Variable v = dodsfile.findVariable("types"); assert v != null; assert v instanceof DODSStructure; assert v.getRank() == 1; assert v.getDataType() == DataType.STRUCTURE; DODSStructure struct = (DODSStructure) v; for (int i=0; i<struct.getSize(); i++) { StructureData sd = struct.readStructure(i); StructureMembers.Member m = sd.findMember("ss"); assert m != null; Array a = sd.getArray(m); assert a.getRank() == 0; assert a.getElementType() == StructureData.class; StructureData ss = (StructureData) a.getObject( a.getIndex()); assert ss.getScalarString("s").equals("This is a data test string (pass "+0+")."); } } }