Package org.nfctools.llcp.pdu

Examples of org.nfctools.llcp.pdu.Connect


    assertTrue(protocolDataUnit instanceof Symmetry);
  }

  @Test
  public void testConnectUnavailableService() throws Exception {
    Connect connect = new Connect(0x01, 0x32, new ServiceName(COM_ANDROID_NPP));
    AbstractProtocolDataUnit processPdu = connect.processPdu(connectionManager);
    assertTrue(processPdu instanceof DisconnectedMode);
    assertEquals(2, ((DisconnectedMode)processPdu).getReason());
  }
View Full Code Here


    assertEquals(2, ((DisconnectedMode)processPdu).getReason());
  }

  @Test
  public void testConnectUnavailableAddress() throws Exception {
    Connect connect = new Connect(0x02, 0x32, new ServiceName(COM_ANDROID_NPP));
    AbstractProtocolDataUnit processPdu = connect.processPdu(connectionManager);
    assertTrue(processPdu instanceof DisconnectedMode);
    assertEquals(2, ((DisconnectedMode)processPdu).getReason());
  }
View Full Code Here

  @Test
  public void testConnectWellKnownServiceWithServiceUnavailable() throws Exception {
    DummyServiceAccessPoint serviceAccessPoint = new DummyServiceAccessPoint(COM_ANDROID_NPP);
    serviceAccessPoint.setAcceptConnections(false);
    connectionManager.registerWellKnownServiceAccessPoint(COM_ANDROID_NPP, serviceAccessPoint);
    Connect connect = new Connect(0x01, 0x32, new ServiceName(COM_ANDROID_NPP));
    AbstractProtocolDataUnit processPdu = connect.processPdu(connectionManager);
    assertTrue(processPdu instanceof DisconnectedMode);
    assertEquals(3, ((DisconnectedMode)processPdu).getReason());
  }
View Full Code Here

  }

  @Test
  public void testConnectWellKnownService() throws Exception {
    connectionManager.registerWellKnownServiceAccessPoint(COM_ANDROID_NPP, new DummyServiceAccessPoint());
    Connect connect = new Connect(0x01, 0x32, new ServiceName(COM_ANDROID_NPP));
    AbstractProtocolDataUnit processPdu = connect.processPdu(connectionManager);
    assertTrue(processPdu instanceof ConnectComplete);
  }
View Full Code Here

    connectionManager.registerWellKnownServiceAccessPoint(COM_ANDROID_NPP, serviceAccessPoint);
    AbstractProtocolDataUnit processPdu = new Symmetry().processPdu(connectionManager);
    assertTrue(processPdu.toString(), processPdu instanceof Connect);
    assertEquals(0, connectionManager.getOpenConnectionsSize());

    Connect connect = (Connect)processPdu;
    assertEquals(1, connect.getDestinationServiceAccessPoint());
    assertEquals(32, connect.getSourceServiceAccessPoint());

    processPdu = new ConnectComplete(connect.getSourceServiceAccessPoint(),
        connect.getDestinationServiceAccessPoint()).processPdu(connectionManager);

    assertEquals(1, connectionManager.getOpenConnectionsSize());
    assertTrue(processPdu.toString(), processPdu instanceof Information);

    Information information = (Information)processPdu;
View Full Code Here

  @Test
  public void testWellKnownServiceConnectWithReceiveAndDisconnect() throws Exception {
    DummyServiceAccessPoint serviceAccessPoint = new DummyServiceAccessPoint(COM_ANDROID_NPP);
    connectionManager.registerWellKnownServiceAccessPoint(COM_ANDROID_NPP, serviceAccessPoint);
    AbstractProtocolDataUnit processPdu = new Connect(1, 32, new ServiceName(COM_ANDROID_NPP))
        .processPdu(connectionManager);
    assertTrue(processPdu.toString(), processPdu instanceof ConnectComplete);
    assertEquals(1, connectionManager.getOpenConnectionsSize());

    processPdu = new Information(32, 32, 0, 0, "Hello".getBytes()).processPdu(connectionManager);
View Full Code Here

  public void connectToService(String serviceName, ServiceAccessPoint serviceAccessPoint) {
    // TODO move this to llcpsocket
    Object[] parameter = { new ServiceName(serviceName) };
    // TODO MIUX
    int outgoingAddress = getFreeOutgoingAddress();
    Connect connectPdu = new Connect(SERVICE_DISCOVERY_ADDRESS, outgoingAddress, parameter);
    pendingConnections.put(outgoingAddress, new PendingConnection(serviceAccessPoint, System.currentTimeMillis(),
        connectPdu));
    messageToSend = connectPdu;
  }
View Full Code Here

TOP

Related Classes of org.nfctools.llcp.pdu.Connect

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.