Package com.sun.sgs.impl.service.session

Examples of com.sun.sgs.impl.service.session.ClientSessionServiceImpl$SessionServerImpl


    // -- Test constructor --

    @Test
    public void testConstructorNullProperties() throws Exception {
  try {
      new ClientSessionServiceImpl(
    null, serverNode.getSystemRegistry(),
    serverNode.getProxy());
      fail("Expected NullPointerException");
  } catch (NullPointerException e) {
      System.err.println(e);
View Full Code Here


    }

    @Test
    public void testConstructorNullComponentRegistry() throws Exception {
  try {
      new ClientSessionServiceImpl(serviceProps, null,
           serverNode.getProxy());
      fail("Expected NullPointerException");
  } catch (NullPointerException e) {
      System.err.println(e);
  }
View Full Code Here

    }

    @Test
    public void testConstructorNullTransactionProxy() throws Exception {
  try {
      new ClientSessionServiceImpl(serviceProps,
           serverNode.getSystemRegistry(), null);
      fail("Expected NullPointerException");
  } catch (NullPointerException e) {
      System.err.println(e);
  }
View Full Code Here

    }

    @Test
    public void testConstructorNoAppName() throws Exception {
  try {
      new ClientSessionServiceImpl(
    new Properties(), serverNode.getSystemRegistry(),
    serverNode.getProxy());
      fail("Expected IllegalArgumentException");
  } catch (IllegalArgumentException e) {
      System.err.println(e);
View Full Code Here

    @Test
    public void testConstructorNoPort() throws Exception {
        Properties props =
            createProperties(StandardProperties.APP_NAME, APP_NAME);
        new ClientSessionServiceImpl(
            props, serverNode.getSystemRegistry(),
            serverNode.getProxy());
    }
View Full Code Here

  try {
      Properties props =
    createProperties(
        StandardProperties.APP_NAME, APP_NAME,
                    SimpleSgsProtocolAcceptor.DISCONNECT_DELAY_PROPERTY, "199");
      new ClientSessionServiceImpl(
    props, serverNode.getSystemRegistry(),
    serverNode.getProxy());
      fail("Expected IllegalArgumentException");
  } catch (IllegalArgumentException e) {
      System.err.println(e);
View Full Code Here

  try {
      Properties props =
    createProperties(
        StandardProperties.APP_NAME, APP_NAME,
                    "com.sun.sgs.impl.service.session.login.high.water", "-1");
      new ClientSessionServiceImpl(
    props, serverNode.getSystemRegistry(),
    serverNode.getProxy());
      fail("Expected IllegalArgumentException");
  } catch (IllegalArgumentException e) {
      System.err.println(e);
  }
        try {
      Properties props =
    createProperties(
        StandardProperties.APP_NAME, APP_NAME,
                    "com.sun.sgs.impl.service.session.login.high.water",
                    String.valueOf((Integer.MAX_VALUE / 2) + 1));
      new ClientSessionServiceImpl(
    props, serverNode.getSystemRegistry(),
    serverNode.getProxy());
      fail("Expected IllegalArgumentException");
  } catch (IllegalArgumentException e) {
      System.err.println(e);
View Full Code Here

    public void run() {
        Version version = new Version(MAJOR_VERSION, MINOR_VERSION);
        dataService.setServiceBinding(VERSION_KEY, version);
    }}, taskOwner);

  new ClientSessionServiceImpl(
      serviceProps, serverNode.getSystemRegistry(),
      serverNode.getProxy());
    }
View Full Code Here

      new Version(MAJOR_VERSION + 1, MINOR_VERSION);
        dataService.setServiceBinding(VERSION_KEY, version);
    }}, taskOwner);

  try {
      new ClientSessionServiceImpl(
    serviceProps, serverNode.getSystemRegistry(),
    serverNode.getProxy());
      fail("Expected IllegalStateException");
  } catch (IllegalStateException e) {
      System.err.println(e);
View Full Code Here

      new Version(MAJOR_VERSION, MINOR_VERSION + 1);
        dataService.setServiceBinding(VERSION_KEY, version);
    }}, taskOwner);

  try {
      new ClientSessionServiceImpl(
    serviceProps, serverNode.getSystemRegistry(),
    serverNode.getProxy());
      fail("Expected IllegalStateException");
  } catch (IllegalStateException e) {
      System.err.println(e);
View Full Code Here

TOP

Related Classes of com.sun.sgs.impl.service.session.ClientSessionServiceImpl$SessionServerImpl

Copyright © 2018 www.massapicom. 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.