2009-05-24 Robert Jordan <robertj@gmx.net>
[mono.git] / mcs / class / System.Runtime.Remoting / Test / ChangeLog
1 2009-05-24  Robert Jordan  <robertj@gmx.net>
2
3         * GenericTest.cs (TestCrossAppDomainChannel): disable on MS.NET as
4         some generic calls do not seem to be supported anymore. It looks
5         like a bug, though, since the same tests are passing when performed
6         over the TCP channel.
7
8 2009-05-24  Robert Jordan  <robertj@gmx.net>
9
10         * GenericTest.cs (TestTcpChannel): create a unique channel and
11         unregister it upon termination. Fixes issues that were uncovered
12         by the NUnit upgrade (see Atsushi's changelogs below).
13
14 2009-01-07  Atsushi Enomoto  <atsushi@ximian.com>
15
16         * RemotingServicesTest.cs : mark failing test as NotWorking, and 
17           Ignore the blocker for other tests.
18           Remoting tests are finally back!
19
20 2009-01-07  Atsushi Enomoto  <atsushi@ximian.com>
21
22         * BaseCalls.cs : fully name is sometimes rejected ... ?
23
24 2009-01-07  Atsushi Enomoto  <atsushi@ximian.com>
25
26         * GenericTest.cs : change from NotWorking to Ignore which also fails
27           and blocks further tests under .NET.
28
29 2009-01-07  Atsushi Enomoto  <atsushi@ximian.com>
30
31         * HttpBugTests.cs : mark some tests as [Ignore] as they are blocker
32           to other http tests. Make sure to unregister HTTP channel.
33
34 2009-01-07  Atsushi Enomoto  <atsushi@ximian.com>
35
36         * GenericTest.cs, HttpServerChannelTests.cs, ActivationTests.cs,
37           BaseCalls.cs, CrossDomainCalls.cs, HttpBugTests.cs,
38           ContextsTest.cs : explicitly set applicationBasePath to load
39           the test assembly itself. It reduces hundreds of test failures
40           under .NET and upgraded NUnit.
41           Marked some tests as NotWorking (due to nunit upgrade).
42
43 2008-09-24  Michael Hutchinson  <mhutchinson@novell.com>
44
45         * HttpServerChannelTests.cs: Don't check for a chunked response from 
46           the Mono HTTP server; it no longer chunks since that was breaking 
47           other tests.
48
49 2008-09-19  Michael Hutchinson  <mhutchinson@novell.com>
50
51         * ActivationTests.cs:
52         * HttpCalls.cs: Add a timeout on the client.
53         * HttpBugTests.cs: Add tests for some bugzilla bugs. One's not fixed, 
54           so is marked as not working.
55
56 2008-09-19  Jeffrey Stedfast  <fejj@novell.com>
57
58         * HttpServerChannelTests.cs: More unit tests for
59         HttpServerChannel.
60
61 2008-09-17  Jeffrey Stedfast  <fejj@novell.com>
62
63         * BaseCalls.cs (RemoteObject): Added more methods for invoking.
64
65 2008-01-25  Gert Driesen  <drieseng@users.sourceforge.net>
66
67         * ActivationTests.cs: Only stop server if it was actually created.
68         * RemotingServicesTest.cs: Always/only unregister channels if they were
69         actually created. More code formatting.
70
71 2008-01-25  Gert Driesen  <drieseng@users.sourceforge.net>
72
73         * RemotingServicesTest.cs: Do not hide exception that occur when
74         unregistering a channel. Code formatting and removed extra tabs.
75
76 2007-10-30  Robert Jordan  <robertj@gmx.net>
77
78         * GenericTest.cs: Add tests for bug #324232.
79
80 2007-09-09  Robert Jordan  <robertj@gmx.net>
81
82         * GenericTest.cs: Add tests for bug #78882, #81554.
83
84 2007-06-05  Robert Jordan  <robertj@gmx.net>
85
86         * RemotingServicesTest.cs: Add test for bug #81811.
87
88 2007-05-19  Robert Jordan  <robertj@gmx.net>
89
90         * IpcChannelTest.cs: Add test for bug #81653.
91
92 2007-02-05  Robert Jordan  <robertj@gmx.net>
93
94         * BaseCalls.cs (PrimitiveParams): Add dummy overload method for
95         bug #77191.
96         * ReflectionCalls.cs (PrimitiveParams): Due to the change above
97         we need to specify the exact signature because PrimitiveParams ()
98         is overloaded now.
99
100 2007-01-09  Robert Jordan  <robertj@gmx.net>
101
102         * GenericTest.cs: Added test for generics in remoting interfaces.
103         See bug #80383.
104
105 2006-12-18  Lluis Sanchez Gual  <lluis@ximian.com>
106
107         * BaseCalls.cs: Added some tests for exceptions.
108
109 2005-12-02  Robert Jordan  <robertj@gmx.net>
110
111         * RemotingServicesTest.cs: Added test for bug #76809.
112
113 2005-12-01  Robert Jordan  <robertj@gmx.net>
114
115         * IpcCalls.cs: Made the IPC channel names unique to match the
116         Tcp/HttpChannel(0) semantics, because the test suite
117         relies on that.
118
119 2005-10-16  Robert Jordan  <robertj@gmx.net>
120
121         * IpcCalls.cs: Added.
122
123 2005-04-27  Lluis Sanchez Gual  <lluis@ximian.com>
124
125         * RemotingServicesTest.cs: Fix warning.
126         * ContextsTest.cs: Removed unneeded exception catch.
127         Changed the order in which GetEnvoySink is called. I think 
128         this is a safe chenge, since it is not defined where the
129         call to GetEnvoySink should be made.
130
131 2005-02-16  Lluis Sanchez Gual  <lluis@ximian.com>
132
133         * HttpCalls.cs, TcpCalls.cs: Don't use a hardcoded port number for the
134         test channels, take any free port.
135
136 2004-12-17  Lluis Sanchez Gual  <lluis@ximian.com>
137
138         * HttpCalls.cs: Use a different port.
139
140 2004-12-17  Lluis Sanchez Gual <lluis@ximian.com>
141
142         * BaseCalls.cs: Removed useless try/catch.
143
144 2004-09-27  Lluis Sanchez Gual <lluis@ximian.com>
145
146         * ContextsTest.cs: Fixed test sequence.
147         * RemotingServicesTest.cs: Minor fix.
148         * ServerObject.cs: Added check for transparent proxy in all CBO methods.
149
150 2004-07-02  Lluis Sanchez Gual <lluis@ximian.com>
151
152         * ActivationTests.cs: Fixed and enhanced tests.
153         * RemotingServicesTest.cs: Added.
154
155 2004-06-23  Lluis Sanchez Gual <lluis@ximian.com>
156
157         * ActivationTests.cs: New tests.
158         * BaseCalls.cs, CallSeq.cs: Use Assert instead of the deprecated Assertion.
159
160 2004-05-03  Lluis Sanchez Gual <lluis@ximian.com>
161
162         * AsyncCalls.cs, BaseCalls.cs, DelegateCalls.cs, ReflectionCalls.cs, 
163           ServerObject.cs, SyncCalls.cs: Improved PrimitiveParamsInOut test case.
164
165 2004-02-23  Lluis Sanchez Gual <lluis@ximian.com>
166
167         * AsyncCalls.cs, BaseCalls.cs, CallSeq.cs, ContextHookAttribute.cs, 
168           ContextsTest.cs, CrossDomainCalls.cs, DelegateCalls.cs, HttpCalls.cs,
169           ReflectionCalls.cs, ServerObject.cs, SyncCalls.cs, TcpCalls.cs:
170           Shortened namespace name.
171
172 2003-11-11  Lluis Sanchez Gual <lluis@ximian.com>
173
174         * BaseCalls.cs: Little fix.
175         * ContextsTest.cs: Unregister dynamic properties even if there is an exception.
176         * CrossDomainCalls.cs: New test for the cross-app domain channel.
177           
178 2003-09-01  Nick Drochak  <ndrochak@gol.com>
179
180         * AsyncCalls.cs: Fix Build breaker on .NET 1.1.
181
182 2003-08-22  Lluis Sanchez Gual <lluis@ximian.com>
183
184         * BaseCalls.cs: Create 3 test remote objects, one for each kind of access,
185           to avoid reuse of client proxies.
186         * CallSeq.cs: Now, "domain ID" is set manually.
187         * ContextsTest.cs: Added initialization of common domain id. Other small fixes.
188         * ReflectionCalls.cs: Get the method for the invoke for the correct type.
189           GetType() for a proxy to interface always return MarshalByRefObject.
190         * TcpCalls.cs, HttpCalls.cs: Added delegate tests.
191         * DelegateCalls.cs: New test suite for calls using delegates.
192
193 2003-08-20  Lluis Sanchez Gual <lluis@ximian.com>
194
195         * AsyncCalls.cs, BaseCalls.cs, HttpCalls.cs, ReflectionCalls.cs, SyncCalls.cs,
196           TcpCalls.cs: new test suite for remoting. It tests sync calls, async calls
197           and reflection calls using tcp and http channels.
198         * CallSeq.cs, ContextHookAttribute.cs: Add methods for getting a context and
199           domain ids that are the same between tests runs.
200         * ContextsTest.cs: unregister channel on test shutdown.
201
202 2003-07-23  Lluis Sanchez Gual <lluis@ximian.com>
203
204         * ContextsTest.cs, CallSeq.cs, ContextHookAttribute.cs, ServerObject.cs: Added.