Examples of TimeStampResponse


Examples of com.yahoo.omid.tso.messages.TimestampResponse

  
   @Test
   public void testCommit() throws Exception {
      clientHandler.sendMessage(new TimestampRequest());
      clientHandler.receiveBootstrap();
      TimestampResponse tr1 = clientHandler.receiveMessage(TimestampResponse.class);

      clientHandler.sendMessage(new CommitRequest(tr1.timestamp));
      CommitResponse cr1 = clientHandler.receiveMessage(CommitResponse.class);
      assertTrue(cr1.committed);
      assertTrue(cr1.commitTimestamp > tr1.timestamp);
View Full Code Here

Examples of com.yahoo.omid.tso.messages.TimestampResponse

   @Test
   public void testConflicts() throws IOException, InterruptedException {
      clientHandler.sendMessage(new TimestampRequest());
      clientHandler.receiveBootstrap();
      TimestampResponse tr1 = clientHandler.receiveMessage(TimestampResponse.class);

      clientHandler.sendMessage(new TimestampRequest());
      TimestampResponse tr2 = clientHandler.receiveMessage(TimestampResponse.class);

      clientHandler.sendMessage(new CommitRequest(tr1.timestamp, new RowKey[] { r1 }));
      CommitResponse cr1 = clientHandler.receiveMessage(CommitResponse.class);
      assertTrue(cr1.committed);
      assertEquals(tr1.timestamp, cr1.startTimestamp);

      clientHandler.sendMessage(new CommitRequest(tr2.timestamp, new RowKey[] { r1, r2 }));
      CommitResponse cr2 = clientHandler.receiveMessage(CommitResponse.class);
      assertFalse(cr2.committed);

      // TODO fix this. Commiting an already committed value (either failed or commited) should fail
      // FIXME to do this.
//      clientHandler.sendMessage(new CommitRequest(tr1.timestamp, new RowKey[] { r2 }));
//      messageReceived = clientHandler.receiveMessage();
//      assertThat(messageReceived, is(CommitResponse.class));
//      CommitResponse cr3 = (CommitResponse) messageReceived;
//      assertFalse(cr3.committed);
     
      clientHandler.sendMessage(new TimestampRequest());
      // Pending commit report
      CommittedTransactionReport ctr1 = clientHandler.receiveMessage(CommittedTransactionReport.class);
      assertEquals(cr1.startTimestamp, ctr1.startTimestamp);
      assertEquals(cr1.commitTimestamp, ctr1.commitTimestamp);
      // Aborted transaction report
      AbortedTransactionReport atr = clientHandler.receiveMessage(AbortedTransactionReport.class);
      assertEquals(cr2.startTimestamp, atr.startTimestamp);
      // Full Abort report
      CleanedTransactionReport cltr = clientHandler.receiveMessage(CleanedTransactionReport.class);
      assertEquals(cr2.startTimestamp, cltr.startTimestamp);
     
      TimestampResponse tr3 = clientHandler.receiveMessage(TimestampResponse.class);

      clientHandler.sendMessage(new CommitRequest(tr3.timestamp, new RowKey[] { r1, r2 }));
      CommitResponse cr3 = clientHandler.receiveMessage(CommitResponse.class);
      assertTrue(cr3.committed);
      assertEquals(tr3.timestamp, cr3.startTimestamp);

      clientHandler.sendMessage(new TimestampRequest());

      // Pending commit report
      CommittedTransactionReport ctr3 = clientHandler.receiveMessage(CommittedTransactionReport.class);
      assertEquals(cr3.startTimestamp, ctr3.startTimestamp);
      assertEquals(cr3.commitTimestamp, ctr3.commitTimestamp);
     
      TimestampResponse tr4 = clientHandler.receiveMessage(TimestampResponse.class);

      clientHandler.sendMessage(new CommitRequest(tr4.timestamp, new RowKey[] { r2 }));
      CommitResponse cr4 = clientHandler.receiveMessage(CommitResponse.class);
      assertTrue(cr4.committed);
      assertEquals(tr4.timestamp, cr4.startTimestamp);
View Full Code Here

Examples of com.yahoo.omid.tso.messages.TimestampResponse

   @Test
   public void testConflict() throws Exception {
      clientHandler.sendMessage(new TimestampRequest());
      clientHandler.receiveBootstrap();
      TimestampResponse tr1 = clientHandler.receiveMessage(TimestampResponse.class);

      clientHandler.sendMessage(new TimestampRequest());
      TimestampResponse tr2 = clientHandler.receiveMessage(TimestampResponse.class);
      assertTrue(tr2.timestamp > tr1.timestamp);

      clientHandler.sendMessage(new CommitRequest(tr1.timestamp, new RowKey[] { r1 }));
      CommitResponse cr1 = clientHandler.receiveMessage(CommitResponse.class);
      assertTrue(cr1.committed);
View Full Code Here

Examples of com.yahoo.omid.tso.messages.TimestampResponse

   @Test
   public void testMultipleCommitsWithoutConflict() throws Exception {
      clientHandler.sendMessage(new TimestampRequest());
      clientHandler.receiveBootstrap();
      TimestampResponse tr1 = clientHandler.receiveMessage(TimestampResponse.class);

      clientHandler.sendMessage(new CommitRequest(tr1.timestamp, new RowKey[] { r1 }));
      CommitResponse cr1 = clientHandler.receiveMessage(CommitResponse.class);
      assertTrue(cr1.committed);
      assertTrue(cr1.commitTimestamp > tr1.timestamp);
      assertEquals(tr1.timestamp, cr1.startTimestamp);

      // Queued commit report
      clientHandler.sendMessage(new TimestampRequest());
      clientHandler.receiveMessage(CommittedTransactionReport.class);
     
      TimestampResponse tr2 = clientHandler.receiveMessage(TimestampResponse.class);
      assertTrue(tr2.timestamp > tr1.timestamp);

      clientHandler.sendMessage(new CommitRequest(tr2.timestamp, new RowKey[] { r1, r2 }));
      CommitResponse cr2 = clientHandler.receiveMessage(CommitResponse.class);
      assertTrue(cr2.committed);
      assertTrue(cr2.commitTimestamp > tr2.timestamp);
      assertEquals(tr2.timestamp, cr2.startTimestamp);

      // Queued commit report
      clientHandler.sendMessage(new TimestampRequest());
      clientHandler.receiveMessage(CommittedTransactionReport.class);
     
      TimestampResponse tr3 = clientHandler.receiveMessage(TimestampResponse.class);
      assertTrue(tr3.timestamp > tr1.timestamp);

      clientHandler.sendMessage(new CommitRequest(tr3.timestamp, new RowKey[] { r2 }));
      CommitResponse cr3 = clientHandler.receiveMessage(CommitResponse.class);
      assertTrue(cr3.committed);
View Full Code Here

Examples of com.yahoo.omid.tso.messages.TimestampResponse

        ChannelFuture future = Channels.future(channel);
        synchronized (sharedMsgBufLock) {
            cb = buffer.flush(future);
        }
        Channels.write(ctx, future, cb); //cb中放的是什么消息类型在client进行TSODecoder.decode时才懂
        Channels.write(channel, new TimestampResponse(timestamp));
    }
View Full Code Here

Examples of com.yahoo.omid.tso.messages.TimestampResponse

   @Test
   public void testConflicts() throws IOException, InterruptedException {
      clientHandler.sendMessage(new TimestampRequest());
      clientHandler.receiveBootstrap();
      TimestampResponse tr1 = clientHandler.receiveMessage(TimestampResponse.class);

      clientHandler.sendMessage(new TimestampRequest());
      TimestampResponse tr2 = clientHandler.receiveMessage(TimestampResponse.class);

      clientHandler.sendMessage(new CommitRequest(tr1.timestamp, new RowKey[] { r1 }));
      CommitResponse cr1 = clientHandler.receiveMessage(CommitResponse.class);
      assertTrue(cr1.committed);
      assertEquals(tr1.timestamp, cr1.startTimestamp);

      clientHandler.sendMessage(new CommitRequest(tr2.timestamp, new RowKey[] { r1, r2 }));
      CommitResponse cr2 = clientHandler.receiveMessage(CommitResponse.class);
      assertFalse(cr2.committed);

      // TODO fix this. Commiting an already committed value (either failed or commited) should fail
      // FIXME to do this.
//      clientHandler.sendMessage(new CommitRequest(tr1.timestamp, new RowKey[] { r2 }));
//      messageReceived = clientHandler.receiveMessage();
//      assertThat(messageReceived, is(CommitResponse.class));
//      CommitResponse cr3 = (CommitResponse) messageReceived;
//      assertFalse(cr3.committed);
     
      clientHandler.sendMessage(new TimestampRequest());
      // Pending commit report
      CommittedTransactionReport ctr1 = clientHandler.receiveMessage(CommittedTransactionReport.class);
      assertEquals(cr1.startTimestamp, ctr1.startTimestamp);
      assertEquals(cr1.commitTimestamp, ctr1.commitTimestamp);
      // Aborted transaction report
      AbortedTransactionReport atr = clientHandler.receiveMessage(AbortedTransactionReport.class);
      assertEquals(cr2.startTimestamp, atr.startTimestamp);
      // Full Abort report
      CleanedTransactionReport cltr = clientHandler.receiveMessage(CleanedTransactionReport.class);
      assertEquals(cr2.startTimestamp, cltr.startTimestamp);
     
      TimestampResponse tr3 = clientHandler.receiveMessage(TimestampResponse.class);

      clientHandler.sendMessage(new CommitRequest(tr3.timestamp, new RowKey[] { r1, r2 }));
      CommitResponse cr3 = clientHandler.receiveMessage(CommitResponse.class);
      assertTrue(cr3.committed);
      assertEquals(tr3.timestamp, cr3.startTimestamp);

      clientHandler.sendMessage(new TimestampRequest());

      // Pending commit report
      CommittedTransactionReport ctr3 = clientHandler.receiveMessage(CommittedTransactionReport.class);
      assertEquals(cr3.startTimestamp, ctr3.startTimestamp);
      assertEquals(cr3.commitTimestamp, ctr3.commitTimestamp);
     
      TimestampResponse tr4 = clientHandler.receiveMessage(TimestampResponse.class);

      clientHandler.sendMessage(new CommitRequest(tr4.timestamp, new RowKey[] { r2 }));
      CommitResponse cr4 = clientHandler.receiveMessage(CommitResponse.class);
      assertTrue(cr4.committed);
      assertEquals(tr4.timestamp, cr4.startTimestamp);
View Full Code Here

Examples of com.yahoo.omid.tso.messages.TimestampResponse

            switch (type) {
            case TSOMessage.TimestampRequest:
                msg = new TimestampRequest();
                break;
            case TSOMessage.TimestampResponse:
                msg = new TimestampResponse();
                break;
            case TSOMessage.CommitRequest:
                msg = new CommitRequest();
                break;
            case TSOMessage.CommitResponse:
View Full Code Here

Examples of org.bouncycastle.tsp.TimeStampResponse

        TimeStampRequest request = tsaGenerator.generate(oid, hash, BigInteger.valueOf(nonce));

        // get TSA response
        byte[] tsaResponse = getTSAResponse(request.getEncoded());

        TimeStampResponse response;
        try
        {
            response = new TimeStampResponse(tsaResponse);
            response.validate(request);
        }
        catch (TSPException e)
        {
            throw new IOException(e);
        }
       
        TimeStampToken token = response.getTimeStampToken();
        if (token == null)
        {
            throw new IOException("Response does not have a time stamp token");
        }
View Full Code Here

Examples of org.bouncycastle.tsp.TimeStampResponse

           
            // Call the communications layer
            respBytes = getTSAResponse(requestBytes);
           
            // Handle the TSA response
            TimeStampResponse response = new TimeStampResponse(respBytes);
           
            // validate communication level attributes (RFC 3161 PKIStatus)
            response.validate(request);
            PKIFailureInfo failure = response.getFailInfo();
            int value = (failure == null) ? 0 : failure.intValue();
            if (value != 0) {
                // @todo: Translate value of 15 error codes defined by PKIFailureInfo to string
                throw new IOException(MessageLocalization.getComposedMessage("invalid.tsa.1.response.code.2", tsaURL, String.valueOf(value)));
            }
            // @todo: validate the time stap certificate chain (if we want
            //        assure we do not sign using an invalid timestamp).
           
            // extract just the time stamp token (removes communication status info)
            TimeStampToken  tsToken = response.getTimeStampToken();
            if (tsToken == null) {
                throw new IOException(MessageLocalization.getComposedMessage("tsa.1.failed.to.return.time.stamp.token.2", tsaURL, response.getStatusString()));
            }
            TimeStampTokenInfo tsTokenInfo = tsToken.getTimeStampInfo(); // to view details
            byte[] encoded = tsToken.getEncoded();

            LOGGER.info("Timestamp generated: " + tsTokenInfo.getGenTime());
View Full Code Here

Examples of org.bouncycastle.tsp.TimeStampResponse

        }
      }

      if (replyBytes != null) {
        try {
          TimeStampResponse timeStampResponse = new TimeStampResponse(replyBytes);
          timeStampResponse.validate(timeStampRequest);
        } catch (TSPValidationException e) {
          LogLog.error("TimeStampResponse validation failed.", e);
          e.printStackTrace();
        } catch (TSPException e) {
          LogLog.error("TimeStampResponse failed.", e);
View Full Code Here
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.