Package org.iosgi.outpost.operations

Source Code of org.iosgi.outpost.operations.PutTest

/* 
* i-OSGi - Tunable Bundle Isolation for OSGi
* Copyright (C) 2011  Sven Schulz
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
package org.iosgi.outpost.operations;

import java.io.File;
import java.util.Arrays;
import java.util.Random;
import java.util.concurrent.TimeUnit;

import org.iosgi.outpost.Client;
import org.iosgi.outpost.Server;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;

/**
* @author Sven Schulz
*/
public class PutTest {

  private static final Random RANDOM = new Random();

  private Server server;

  @Before
  public void setUp() {
    server = new Server();
    server.listen();
  }

  @After
  public void tearDown() {
    server.shutdown();
  }

  @Test
  public void test() throws Exception {
    Client c = new Client("localhost");
    c.connect(5, TimeUnit.SECONDS);
    File target = new File(new File("."), "test");
    Assert.assertFalse(target.exists());
    byte[] data = new byte[RANDOM.nextInt(1024 * 1024) + 1];
    RANDOM.nextBytes(data);
    Put put = new Put(target, data);
    c.perform(put);
    Assert.assertTrue(target.exists());
    Assert.assertTrue(target.isFile());
    Assert.assertTrue(Arrays.equals(data, Put.toByteArray(target)));
    target.delete();
  }
}
TOP

Related Classes of org.iosgi.outpost.operations.PutTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.