Github user rxin commented on a diff in the pull request:

    https://github.com/apache/spark/pull/15408#discussion_r82652845
  
    --- Diff: 
core/src/test/java/org/apache/spark/io/NioBasedBufferedFileInputStreamSuite.java
 ---
    @@ -0,0 +1,102 @@
    +/*
    + * 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.spark.io;
    +
    +import org.apache.commons.io.FileUtils;
    +import org.apache.commons.lang3.RandomUtils;
    +import org.junit.After;
    +import org.junit.Before;
    +import org.junit.Test;
    +
    +import java.io.File;
    +import java.io.IOException;
    +import java.io.InputStream;
    +
    +import static org.junit.Assert.assertEquals;
    +
    +/**
    + * Tests functionality of {@link NioBasedBufferedFileInputStream}
    + */
    +public class NioBasedBufferedFileInputStreamSuite {
    +
    +  byte[] randomBytes;
    +
    +  File inputFile;
    +
    +  @Before
    +  public void setUp() throws IOException {
    +    // Create a byte array of size 2 MB with random bytes
    +    randomBytes =  RandomUtils.nextBytes(2 * 1024 * 1024);
    +    inputFile = File.createTempFile("temp-file", ".tmp");
    +    FileUtils.writeByteArrayToFile(inputFile, randomBytes);
    +  }
    +
    +  @After
    +  public void tearDown() {
    +    inputFile.delete();
    +  }
    +
    +  @Test
    +  public void testReadOneByte() throws IOException {
    +    InputStream inputStream = new 
NioBasedBufferedFileInputStream(inputFile);
    +    for (int i = 0; i < randomBytes.length; i++) {
    +      assertEquals(randomBytes[i], (byte) inputStream.read());
    +    }
    +  }
    +
    +  @Test
    +  public void testReadMultipleBytes() throws IOException {
    --- End diff --
    
    This reminds me --- we should add test coverage reporting to Spark so it 
becomes obvious what branches are not tested sufficiently.



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to