Package org.iosgi.outpost.operations

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

/* 
* 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.concurrent.TimeUnit;

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

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

  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 dir = new File(new File("."), "test");
    Assert.assertFalse(dir.exists());
    MkDir mkdir = new MkDir(dir);
    c.perform(mkdir);
    Assert.assertTrue(dir.exists());
    Assert.assertTrue(dir.isDirectory());
    dir.delete();
  }
 
}
TOP

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

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.