-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #79 from onerain88/throttle
Throttle
- Loading branch information
Showing
2 changed files
with
115 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
using NUnit.Framework; | ||
using System; | ||
using System.Threading.Tasks; | ||
using LeanCloud; | ||
using LeanCloud.Realtime; | ||
using LeanCloud.Realtime.Internal.Protocol; | ||
|
||
namespace Realtime.Test { | ||
public class Throttle { | ||
private LCIMClient c1; | ||
private LCIMClient c2; | ||
|
||
private LCIMConversation conversation; | ||
|
||
[SetUp] | ||
public async Task SetUp() { | ||
LCLogger.LogDelegate += Utils.Print; | ||
LCApplication.Initialize("ikGGdRE2YcVOemAaRbgp1xGJ-gzGzoHsz", "NUKmuRbdAhg1vrb2wexYo1jo", "https://ikggdre2.lc-cn-n1-shared.com"); | ||
c1 = new LCIMClient(Guid.NewGuid().ToString()); | ||
c2 = new LCIMClient(Guid.NewGuid().ToString()); | ||
await c1.Open(); | ||
await c2.Open(); | ||
|
||
conversation = await c1.CreateConversation(new string[] { Guid.NewGuid().ToString() }); | ||
} | ||
|
||
[TearDown] | ||
public async Task TearDown() { | ||
await c1.Close(); | ||
await c2.Close(); | ||
LCLogger.LogDelegate -= Utils.Print; | ||
} | ||
|
||
[Test] | ||
public void Equality() { | ||
GenericCommand cmd1 = new GenericCommand { | ||
Cmd = CommandType.Session, | ||
Op = OpType.Open, | ||
PeerId = "hello", | ||
I = 1, | ||
SessionMessage = new SessionCommand { | ||
Code = 123 | ||
} | ||
}; | ||
GenericCommand cmd2 = new GenericCommand { | ||
Cmd = CommandType.Session, | ||
Op = OpType.Open, | ||
PeerId = "hello", | ||
I = 2, | ||
SessionMessage = new SessionCommand { | ||
Code = 123 | ||
} | ||
}; | ||
Assert.IsFalse(Equals(cmd1, cmd2)); | ||
cmd2.I = cmd1.I; | ||
Assert.IsTrue(Equals(cmd1, cmd2)); | ||
} | ||
|
||
[Test] | ||
public async Task RemoveMemberTwice() { | ||
Task t1 = conversation.RemoveMembers(new string[] { c2.Id }).ContinueWith(t => { | ||
Assert.IsTrue(t.IsCompleted && !t.IsFaulted); | ||
}); | ||
Task t2 = conversation.RemoveMembers(new string[] { c2.Id }).ContinueWith(t => { | ||
Assert.IsTrue(t.IsCompleted && !t.IsFaulted); | ||
}); | ||
|
||
await Task.WhenAll(t1, t2); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters