source: proiecte/HadoopJUnit/hadoop-0.20.1/src/test/org/apache/hadoop/mapred/TestMultiFileSplit.java @ 120

Last change on this file since 120 was 120, checked in by (none), 14 years ago

Added the mail files for the Hadoop JUNit Project

  • Property svn:executable set to *
File size: 2.2 KB
Line 
1/**
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements.  See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership.  The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License.  You may obtain a copy of the License at
9 *
10 *     http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18package org.apache.hadoop.mapred;
19
20import java.io.ByteArrayInputStream;
21import java.io.ByteArrayOutputStream;
22import java.io.DataInputStream;
23import java.io.DataOutputStream;
24import java.util.Arrays;
25
26import junit.framework.TestCase;
27
28import org.apache.hadoop.fs.Path;
29import org.apache.hadoop.io.IOUtils;
30
31public class TestMultiFileSplit extends TestCase{
32
33    public void testReadWrite() throws Exception {
34      MultiFileSplit split = new MultiFileSplit(new JobConf(), new Path[] {new Path("/test/path/1"), new Path("/test/path/2")}, new long[] {100,200});
35       
36      ByteArrayOutputStream bos = null;
37      byte[] result = null;
38      try {   
39        bos = new ByteArrayOutputStream();
40        split.write(new DataOutputStream(bos));
41        result = bos.toByteArray();
42      } finally {
43        IOUtils.closeStream(bos);
44      }
45     
46      MultiFileSplit readSplit = new MultiFileSplit();
47      ByteArrayInputStream bis = null;
48      try {
49        bis = new ByteArrayInputStream(result);
50        readSplit.readFields(new DataInputStream(bis));
51      } finally {
52        IOUtils.closeStream(bis);
53      }
54     
55      assertTrue(split.getLength() != 0);
56      assertEquals(split.getLength(), readSplit.getLength());
57      assertTrue(Arrays.equals(split.getPaths(), readSplit.getPaths()));
58      assertTrue(Arrays.equals(split.getLengths(), readSplit.getLengths()));
59      System.out.println(split.toString());
60    }
61}
Note: See TracBrowser for help on using the repository browser.