The Inbox: NetworkTests-dtl.29.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: NetworkTests-dtl.29.mcz

commits-2
A new version of NetworkTests was added to project The Inbox:
http://source.squeak.org/inbox/NetworkTests-dtl.29.mcz

==================== Summary ====================

Name: NetworkTests-dtl.29
Author: dtl
Time: 6 June 2012, 8:18:21.701999999 pm
UUID: 6db84a58-f23d-4d3d-8782-0cc69c94de77
Ancestors: NetworkTests-dtl.28

Remove SocketStreamTestOldNetwork and SocketTestOldNetwork, which are no longer meaningful as of Network-dtl.126.mcz (inbox). Tests are now identical to the network tests in trunk except for SocketTest>>testRemoteAddress which has a minor change to support ipv6, functionally compatible with original test for ipv4.

=============== Diff against NetworkTests-dtl.28 ===============

Item was removed:
- SocketStreamTest subclass: #SocketStreamTestOldNetwork
- instanceVariableNames: 'originalSetting'
- classVariableNames: ''
- poolDictionaries: ''
- category: 'NetworkTests-Kernel'!
-
- !SocketStreamTestOldNetwork commentStamp: 'dtl 6/4/2012 21:14' prior: 0!
- Run the SocketStreamTest tests with NetNameResolver set to use old network protocol. This is intended to verify some degree of backward compatibility. These tests should be eliminated when the UseOldNetwork class variable is eliminated from NetNameResolver. !

Item was removed:
- ----- Method: SocketStreamTestOldNetwork>>setUp (in category 'running') -----
- setUp
-
- originalSetting := NetNameResolver useOldNetwork.
- NetNameResolver useOldNetwork: true.
- super setUp
- !

Item was removed:
- ----- Method: SocketStreamTestOldNetwork>>targetClass (in category 'running') -----
- targetClass
- ^self class!

Item was removed:
- ----- Method: SocketStreamTestOldNetwork>>tearDown (in category 'running') -----
- tearDown
-
- super tearDown.
- NetNameResolver useOldNetwork: originalSetting
- !

Item was removed:
- SocketTest subclass: #SocketTestOldNetwork
- instanceVariableNames: 'originalSetting'
- classVariableNames: ''
- poolDictionaries: ''
- category: 'NetworkTests-Kernel'!
-
- !SocketTestOldNetwork commentStamp: 'dtl 6/4/2012 21:14' prior: 0!
- Run the SocketTest tests with NetNameResolver set to use old network protocol. This is intended to verify some degree of backward compatibility. These tests should be eliminated when the UseOldNetwork class variable is eliminated from NetNameResolver. !

Item was removed:
- ----- Method: SocketTestOldNetwork>>setUp (in category 'running') -----
- setUp
-
- originalSetting := NetNameResolver useOldNetwork.
- NetNameResolver useOldNetwork: true.
- super setUp
- !

Item was removed:
- ----- Method: SocketTestOldNetwork>>tearDown (in category 'running') -----
- tearDown
-
- super tearDown.
- NetNameResolver useOldNetwork: originalSetting
- !