You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ro...@apache.org on 2017/01/31 10:14:12 UTC

qpid-proton git commit: PROTON-1385: remove stale scratch file

Repository: qpid-proton
Updated Branches:
  refs/heads/master 2f4ccd569 -> e0ec0b61d


PROTON-1385: remove stale scratch file


Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/e0ec0b61
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/e0ec0b61
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/e0ec0b61

Branch: refs/heads/master
Commit: e0ec0b61d970a95a21ff7ea53bec5ea3e82bbbab
Parents: 2f4ccd5
Author: Robert Gemmell <ro...@apache.org>
Authored: Tue Jan 31 10:10:31 2017 +0000
Committer: Robert Gemmell <ro...@apache.org>
Committed: Tue Jan 31 10:10:31 2017 +0000

----------------------------------------------------------------------
 tests/python/proton_tests/scratch.py | 44 -------------------------------
 1 file changed, 44 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/e0ec0b61/tests/python/proton_tests/scratch.py
----------------------------------------------------------------------
diff --git a/tests/python/proton_tests/scratch.py b/tests/python/proton_tests/scratch.py
deleted file mode 100644
index 7e8ae5b..0000000
--- a/tests/python/proton_tests/scratch.py
+++ /dev/null
@@ -1,44 +0,0 @@
-  def xxx_test_reopen_on_same_session(self):
-    ssn1 = self.snd.session
-    ssn2 = self.rcv.session
-
-    self.snd.open()
-    self.rcv.open()
-    self.pump()
-
-    assert self.snd.state == Endpoint.LOCAL_ACTIVE | Endpoint.REMOTE_ACTIVE
-    assert self.rcv.state == Endpoint.LOCAL_ACTIVE | Endpoint.REMOTE_ACTIVE
-
-    self.snd.close()
-    self.rcv.close()
-    self.pump()
-
-    assert self.snd.state == Endpoint.LOCAL_CLOSED | Endpoint.REMOTE_CLOSED
-    assert self.rcv.state == Endpoint.LOCAL_CLOSED | Endpoint.REMOTE_CLOSED
-
-    print self.snd._link
-    self.snd = ssn1.sender("test-link")
-    print self.snd._link
-    self.rcv = ssn2.receiver("test-link")
-    self.snd.open()
-    self.rcv.open()
-    self.pump()
-
-    assert self.snd.state == Endpoint.LOCAL_ACTIVE | Endpoint.REMOTE_ACTIVE
-    assert self.rcv.state == Endpoint.LOCAL_ACTIVE | Endpoint.REMOTE_ACTIVE
-
-class SessionPipelineTest(PeerTest):
-
-  def xxx_test(self):
-    self.connection.open()
-    self.peer.open()
-    self.pump()
-    ssn = self.connection.session()
-    ssn.open()
-    self.pump()
-    peer_ssn = self.peer.session_head(0)
-    ssn.close()
-    self.pump()
-    peer_ssn.close()
-    self.peer.close()
-    self.pump()


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org