Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
b2526215
Commit
b2526215
authored
Jun 25, 2009
by
Jon Skeet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use remoting mocks to work with mono
parent
37a7983a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
6 deletions
+11
-6
ServiceTest.cs
src/ProtocolBuffers.Test/ServiceTest.cs
+11
-6
No files found.
src/ProtocolBuffers.Test/ServiceTest.cs
View file @
b2526215
...
...
@@ -71,7 +71,7 @@ namespace Google.ProtocolBuffers {
MockRepository
mocks
=
new
MockRepository
();
FooRequest
fooRequest
=
FooRequest
.
CreateBuilder
().
Build
();
FooResponse
fooResponse
=
FooResponse
.
CreateBuilder
().
Build
();
IRpcController
controller
=
mocks
.
StrictMock
<
IRpcController
>();
IRpcController
controller
=
mocks
.
StrictMock
WithRemoting
<
IRpcController
>();
bool
fooCalled
=
false
;
...
...
@@ -110,10 +110,16 @@ namespace Google.ProtocolBuffers {
public
void
GeneratedStubFooCall
()
{
FooRequest
fooRequest
=
FooRequest
.
CreateBuilder
().
Build
();
MockRepository
mocks
=
new
MockRepository
();
IRpcChannel
mockChannel
=
mocks
.
StrictMock
<
IRpcChannel
>();
IRpcController
mockController
=
mocks
.
StrictMock
<
IRpcController
>();
IRpcChannel
mockChannel
=
mocks
.
StrictMock
WithRemoting
<
IRpcChannel
>();
IRpcController
mockController
=
mocks
.
StrictMock
WithRemoting
<
IRpcController
>();
TestService
service
=
TestService
.
CreateStub
(
mockChannel
);
Action
<
FooResponse
>
doneHandler
=
mocks
.
StrictMock
<
Action
<
FooResponse
>>();
bool
doneCalled
=
false
;
// TODO(jonskeet): Use Rhino for this (to get ordering) when Mono works with it properly
Action
<
FooResponse
>
doneHandler
=
response
=>
{
Assert
.
IsFalse
(
doneCalled
);
doneCalled
=
true
;
Assert
.
AreEqual
(
FooResponse
.
DefaultInstance
,
response
);
};
using
(
mocks
.
Record
())
{
...
...
@@ -123,7 +129,6 @@ namespace Google.ProtocolBuffers {
.
Constraints
(
Is
.
Same
(
FooDescriptor
),
Is
.
Same
(
mockController
),
Is
.
Same
(
fooRequest
),
Is
.
Same
(
FooResponse
.
DefaultInstance
),
Is
.
Anything
())
.
Do
((
CallFooDelegate
)
((
p1
,
p2
,
p3
,
response
,
done
)
=>
done
(
response
)));
doneHandler
.
Invoke
(
FooResponse
.
DefaultInstance
);
}
service
.
Foo
(
mockController
,
fooRequest
,
doneHandler
);
...
...
@@ -136,7 +141,7 @@ namespace Google.ProtocolBuffers {
MockRepository
mocks
=
new
MockRepository
();
BarRequest
barRequest
=
BarRequest
.
CreateBuilder
().
Build
();
BarResponse
barResponse
=
BarResponse
.
CreateBuilder
().
Build
();
IRpcController
controller
=
mocks
.
StrictMock
<
IRpcController
>();
IRpcController
controller
=
mocks
.
StrictMock
WithRemoting
<
IRpcController
>();
bool
barCalled
=
false
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment