136 lines
4.3 KiB
C#
136 lines
4.3 KiB
C#
using NUnit.Framework;
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
using System.Collections.ObjectModel;
|
|
using LeanCloud;
|
|
using LeanCloud.Common;
|
|
using LeanCloud.Realtime;
|
|
using LeanCloud.Storage;
|
|
|
|
using static NUnit.Framework.TestContext;
|
|
|
|
namespace Realtime.Test {
|
|
public class Client {
|
|
[SetUp]
|
|
public void SetUp() {
|
|
LCLogger.LogDelegate += Utils.Print;
|
|
LCApplication.Initialize("ikGGdRE2YcVOemAaRbgp1xGJ-gzGzoHsz", "NUKmuRbdAhg1vrb2wexYo1jo", "https://ikggdre2.lc-cn-n1-shared.com");
|
|
}
|
|
|
|
[TearDown]
|
|
public void TearDown() {
|
|
LCLogger.LogDelegate -= Utils.Print;
|
|
}
|
|
|
|
[Test]
|
|
public async Task OpenAndClose() {
|
|
LCIMClient client = new LCIMClient("c1");
|
|
await client.Open();
|
|
await client.Close();
|
|
}
|
|
|
|
[Test]
|
|
public async Task OpenAndCloseByLCUser() {
|
|
LCUser user = await LCUser.Login("hello", "world");
|
|
LCIMClient client = new LCIMClient(user);
|
|
await client.Open();
|
|
await client.Close();
|
|
}
|
|
|
|
[Test]
|
|
public async Task CreateConversation() {
|
|
TaskCompletionSource<object> tcs = new TaskCompletionSource<object>();
|
|
|
|
string clientId = Guid.NewGuid().ToString();
|
|
LCIMClient client = new LCIMClient(clientId);
|
|
|
|
await client.Open();
|
|
|
|
client.OnInvited = (conv, initBy) => {
|
|
WriteLine($"on invited: {initBy}");
|
|
WriteLine(conv.CreatorId);
|
|
};
|
|
|
|
client.OnMembersJoined = (conv, memberList, initBy) => {
|
|
WriteLine($"on members joined: {initBy}");
|
|
foreach (string memberId in conv.MemberIds) {
|
|
WriteLine(memberId);
|
|
}
|
|
tcs.SetResult(null);
|
|
};
|
|
|
|
string name = Guid.NewGuid().ToString();
|
|
LCIMConversation conversation = await client.CreateConversation(new string[] { "world" }, name: name, unique: false);
|
|
|
|
await tcs.Task;
|
|
}
|
|
|
|
[Test]
|
|
public async Task CreateChatRoom() {
|
|
TaskCompletionSource<object> tcs = new TaskCompletionSource<object>();
|
|
|
|
string clientId = Guid.NewGuid().ToString();
|
|
LCIMClient client = new LCIMClient(clientId);
|
|
|
|
await client.Open();
|
|
|
|
client.OnInvited = (conv, initBy) => {
|
|
WriteLine($"on invited: {initBy}");
|
|
};
|
|
|
|
string name = Guid.NewGuid().ToString();
|
|
LCIMConversation conversation = await client.CreateChatRoom(name);
|
|
|
|
string visitorId = Guid.NewGuid().ToString();
|
|
LCIMClient visitor = new LCIMClient(visitorId);
|
|
|
|
await visitor.Open();
|
|
visitor.OnInvited = async (conv, initBy) => {
|
|
WriteLine($"on invited: {visitor.Id}");
|
|
LCIMTextMessage textMessage = new LCIMTextMessage("hello, world");
|
|
await conversation.Send(textMessage);
|
|
tcs.SetResult(null);
|
|
};
|
|
|
|
LCIMChatRoom chatRoom = await visitor.GetConversation(conversation.Id) as LCIMChatRoom;
|
|
await chatRoom.Join();
|
|
|
|
int count = await chatRoom.GetMembersCount();
|
|
|
|
ReadOnlyCollection<string> onlineMembers = await chatRoom.GetOnlineMembers();
|
|
Assert.GreaterOrEqual(onlineMembers.Count, 1);
|
|
foreach (string memberId in onlineMembers) {
|
|
WriteLine($"{memberId} online");
|
|
}
|
|
|
|
await client.Close();
|
|
await visitor.Close();
|
|
|
|
await tcs.Task;
|
|
}
|
|
|
|
[Test]
|
|
public async Task CreateTemporaryConversation() {
|
|
TaskCompletionSource<object> tcs = new TaskCompletionSource<object>();
|
|
|
|
string clientId = Guid.NewGuid().ToString();
|
|
LCIMClient client = new LCIMClient(clientId);
|
|
|
|
await client.Open();
|
|
|
|
client.OnInvited = (conv, initBy) => {
|
|
WriteLine($"on invited: {initBy}");
|
|
};
|
|
|
|
client.OnMembersJoined = (conv, memberList, initBy) => {
|
|
WriteLine($"on members joined: {initBy}");
|
|
tcs.SetResult(null);
|
|
};
|
|
|
|
await client.CreateTemporaryConversation(new string[] { "world" });
|
|
|
|
await tcs.Task;
|
|
}
|
|
}
|
|
}
|