2018-08-03 18:11:37 +03:00
|
|
|
|
package v1
|
|
|
|
|
|
|
|
|
|
import (
|
2018-09-01 00:41:29 +03:00
|
|
|
|
"fmt"
|
2018-08-29 02:44:06 +03:00
|
|
|
|
"log"
|
2018-09-20 11:41:20 +03:00
|
|
|
|
"math/rand"
|
2018-08-29 02:44:06 +03:00
|
|
|
|
"net/http"
|
2018-08-03 18:11:37 +03:00
|
|
|
|
"os"
|
2018-08-29 02:44:06 +03:00
|
|
|
|
"strconv"
|
2018-09-01 00:41:29 +03:00
|
|
|
|
"strings"
|
2018-08-29 02:44:06 +03:00
|
|
|
|
"testing"
|
2018-09-20 11:41:20 +03:00
|
|
|
|
"time"
|
2018-08-29 02:44:06 +03:00
|
|
|
|
|
|
|
|
|
"github.com/joho/godotenv"
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2018-08-03 18:11:37 +03:00
|
|
|
|
)
|
|
|
|
|
|
2018-09-20 11:41:20 +03:00
|
|
|
|
const (
|
|
|
|
|
letterBytes = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
|
|
|
|
letterIdxBits = 6 // 6 bits to represent a letter index
|
|
|
|
|
letterIdxMask = 1<<letterIdxBits - 1 // All 1-bits, as many as letterIdxBits
|
|
|
|
|
letterIdxMax = 63 / letterIdxBits // # of letter indices fitting in 63 bits
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var src = rand.NewSource(time.Now().UnixNano())
|
|
|
|
|
|
2018-08-29 02:44:06 +03:00
|
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
|
if os.Getenv("DEVELOPER_NODE") == "1" {
|
|
|
|
|
err := godotenv.Load("../.env")
|
|
|
|
|
if err != nil {
|
|
|
|
|
log.Fatal("Error loading .env file")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
os.Exit(m.Run())
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-03 18:11:37 +03:00
|
|
|
|
var (
|
|
|
|
|
mgURL = os.Getenv("MG_URL")
|
2018-08-29 02:44:06 +03:00
|
|
|
|
mgToken = os.Getenv("MG_BOT_TOKEN")
|
2018-08-03 18:11:37 +03:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func client() *MgClient {
|
2018-12-26 17:38:41 +03:00
|
|
|
|
c := New(mgURL, mgToken)
|
|
|
|
|
c.Debug = true
|
|
|
|
|
|
|
|
|
|
return c
|
2018-08-03 18:11:37 +03:00
|
|
|
|
}
|
2018-08-29 02:44:06 +03:00
|
|
|
|
|
|
|
|
|
func TestMgClient_Bots(t *testing.T) {
|
|
|
|
|
c := client()
|
|
|
|
|
req := BotsRequest{Active: 1}
|
|
|
|
|
|
|
|
|
|
data, status, err := c.Bots(req)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("%d %v", status, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
assert.NotEmpty(t, data)
|
|
|
|
|
|
|
|
|
|
for _, bot := range data {
|
|
|
|
|
assert.NotEmpty(t, bot.CreatedAt)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestMgClient_Channels(t *testing.T) {
|
|
|
|
|
c := client()
|
|
|
|
|
req := ChannelsRequest{Active: 1}
|
|
|
|
|
|
|
|
|
|
data, status, err := c.Channels(req)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("%d %v", status, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
assert.NotEmpty(t, data)
|
|
|
|
|
|
|
|
|
|
for _, channel := range data {
|
|
|
|
|
assert.NotEmpty(t, channel.Type)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestMgClient_Users(t *testing.T) {
|
|
|
|
|
c := client()
|
|
|
|
|
req := UsersRequest{Active: 1}
|
|
|
|
|
|
|
|
|
|
data, status, err := c.Users(req)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("%d %v", status, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
assert.NotEmpty(t, data)
|
|
|
|
|
|
|
|
|
|
for _, user := range data {
|
|
|
|
|
assert.NotEmpty(t, user.FirstName)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestMgClient_Customers(t *testing.T) {
|
|
|
|
|
c := client()
|
|
|
|
|
req := CustomersRequest{}
|
|
|
|
|
|
|
|
|
|
data, status, err := c.Customers(req)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("%d %v", status, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
assert.NotEmpty(t, data)
|
|
|
|
|
|
|
|
|
|
for _, customer := range data {
|
|
|
|
|
assert.NotEmpty(t, customer.ChannelId)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestMgClient_Chats(t *testing.T) {
|
|
|
|
|
c := client()
|
|
|
|
|
req := ChatsRequest{ChannelType: ChannelTypeTelegram}
|
|
|
|
|
|
|
|
|
|
data, status, err := c.Chats(req)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("%d %v", status, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
assert.NotEmpty(t, data)
|
|
|
|
|
|
|
|
|
|
for _, chat := range data {
|
|
|
|
|
assert.NotEmpty(t, chat.Customer.Name)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestMgClient_Members(t *testing.T) {
|
|
|
|
|
c := client()
|
|
|
|
|
req := MembersRequest{State: ChatMemberStateLeaved}
|
|
|
|
|
|
|
|
|
|
data, status, err := c.Members(req)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("%d %v", status, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
|
|
for _, member := range data {
|
|
|
|
|
assert.NotEmpty(t, member.ChatID)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestMgClient_Dialogs(t *testing.T) {
|
|
|
|
|
c := client()
|
|
|
|
|
req := DialogsRequest{Active: 0}
|
|
|
|
|
|
|
|
|
|
data, status, err := c.Dialogs(req)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("%d %v", status, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
assert.NotEmpty(t, data)
|
|
|
|
|
|
|
|
|
|
for _, dialog := range data {
|
|
|
|
|
assert.NotEmpty(t, dialog.ChatID)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestMgClient_DialogAssign(t *testing.T) {
|
|
|
|
|
c := client()
|
|
|
|
|
i, err := strconv.ParseUint(os.Getenv("MG_BOT_DIALOG"), 10, 64)
|
|
|
|
|
m, err := strconv.ParseUint(os.Getenv("MG_BOT_USER"), 10, 64)
|
2018-09-18 16:12:59 +03:00
|
|
|
|
req := DialogAssignRequest{DialogID: i, UserID: m}
|
2018-08-29 02:44:06 +03:00
|
|
|
|
|
|
|
|
|
_, status, err := c.DialogAssign(req)
|
|
|
|
|
|
|
|
|
|
assert.Error(t, err)
|
|
|
|
|
assert.Equal(t, http.StatusBadRequest, status)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestMgClient_DialogClose(t *testing.T) {
|
|
|
|
|
c := client()
|
|
|
|
|
i, err := strconv.ParseUint(os.Getenv("MG_BOT_DIALOG"), 10, 64)
|
|
|
|
|
_, status, err := c.DialogClose(i)
|
|
|
|
|
|
|
|
|
|
assert.Error(t, err)
|
|
|
|
|
assert.Equal(t, http.StatusBadRequest, status)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestMgClient_Messages(t *testing.T) {
|
|
|
|
|
c := client()
|
|
|
|
|
req := MessagesRequest{ChannelType: ChannelTypeTelegram, Scope: MessageScopePublic}
|
|
|
|
|
|
|
|
|
|
data, status, err := c.Messages(req)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("%d %v", status, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
assert.NotEmpty(t, data)
|
|
|
|
|
|
|
|
|
|
for _, message := range data {
|
2018-12-26 17:38:41 +03:00
|
|
|
|
assert.NotEmpty(t, message.ID)
|
2018-08-29 02:44:06 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-13 11:38:13 +03:00
|
|
|
|
func TestMgClient_MessageSendText(t *testing.T) {
|
2018-08-29 02:44:06 +03:00
|
|
|
|
c := client()
|
|
|
|
|
i, err := strconv.ParseUint(os.Getenv("MG_BOT_CHAT"), 10, 64)
|
|
|
|
|
message := MessageSendRequest{
|
2018-09-13 11:38:13 +03:00
|
|
|
|
Type: MsgTypeText,
|
2018-08-29 02:44:06 +03:00
|
|
|
|
Scope: "public",
|
|
|
|
|
Content: "test",
|
|
|
|
|
ChatID: i,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
data, status, err := c.MessageSend(message)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("%d %v", status, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
assert.NotEmpty(t, data.MessageID)
|
|
|
|
|
}
|
2018-09-20 11:41:20 +03:00
|
|
|
|
|
2018-09-13 11:38:13 +03:00
|
|
|
|
func TestMgClient_MessageSendProduct(t *testing.T) {
|
|
|
|
|
c := client()
|
|
|
|
|
|
|
|
|
|
msg, _, err := c.MessageSend(MessageSendRequest{
|
|
|
|
|
Type: MsgTypeProduct,
|
|
|
|
|
ChatID: 5,
|
|
|
|
|
Scope: "public",
|
|
|
|
|
Product: &MessageProduct{
|
|
|
|
|
ID: 1,
|
|
|
|
|
Name: "Some Product",
|
|
|
|
|
Article: "Art-111",
|
|
|
|
|
Url: "https://example.com",
|
|
|
|
|
Img: "http://example.com/pic.jpg",
|
|
|
|
|
Cost: &MessageOrderCost{
|
|
|
|
|
Value: 29900,
|
|
|
|
|
Currency: "rub",
|
|
|
|
|
},
|
|
|
|
|
Quantity: &MessageOrderQuantity{
|
|
|
|
|
Value: 1,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("%v", err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
t.Logf("%v", msg)
|
|
|
|
|
}
|
2018-08-29 02:44:06 +03:00
|
|
|
|
|
2018-09-20 11:41:20 +03:00
|
|
|
|
func TestMgClient_MessageSendOrder(t *testing.T) {
|
|
|
|
|
c := client()
|
|
|
|
|
|
|
|
|
|
msg, _, err := c.MessageSend(MessageSendRequest{
|
|
|
|
|
Type: MsgTypeOrder,
|
|
|
|
|
ChatID: 5,
|
|
|
|
|
Scope: "public",
|
|
|
|
|
Order: &MessageOrder{
|
|
|
|
|
Number: RandStringBytesMaskImprSrc(7),
|
|
|
|
|
Cost: &MessageOrderCost{
|
|
|
|
|
Value: 29900,
|
|
|
|
|
Currency: MsgCurrencyRub,
|
|
|
|
|
},
|
|
|
|
|
Status: &MessageOrderStatus{
|
|
|
|
|
Code: MsgOrderStatusCodeNew,
|
|
|
|
|
Name: "Новый",
|
|
|
|
|
},
|
|
|
|
|
Delivery: &MessageOrderDelivery{
|
|
|
|
|
Name: "Курьерская доставка",
|
|
|
|
|
Address: "г. Москва, Проспект Мира, 9",
|
2018-09-26 15:34:15 +03:00
|
|
|
|
Price: &MessageOrderCost{
|
2018-09-20 11:41:20 +03:00
|
|
|
|
Value: 1100,
|
|
|
|
|
Currency: MsgCurrencyRub,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
Items: []MessageOrderItem{
|
|
|
|
|
{
|
|
|
|
|
Name: "iPhone 6",
|
2018-09-26 15:34:15 +03:00
|
|
|
|
Url: "https://example.com/product.html",
|
|
|
|
|
Img: "https://example.com/picture.png",
|
2018-09-20 11:41:20 +03:00
|
|
|
|
Price: &MessageOrderCost{
|
|
|
|
|
Value: 29900,
|
|
|
|
|
Currency: MsgCurrencyRub,
|
|
|
|
|
},
|
|
|
|
|
Quantity: &MessageOrderQuantity{
|
|
|
|
|
Value: 1,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("%v", err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
t.Logf("%v", msg)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestMgClient_RandomStringGenerator(t *testing.T) {
|
|
|
|
|
rnd := RandStringBytesMaskImprSrc(7)
|
|
|
|
|
assert.NotEmpty(t, rnd)
|
|
|
|
|
t.Logf("%v", rnd)
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-29 02:44:06 +03:00
|
|
|
|
func TestMgClient_MessageEdit(t *testing.T) {
|
|
|
|
|
c := client()
|
|
|
|
|
i, err := strconv.ParseUint(os.Getenv("MG_BOT_CHAT"), 10, 64)
|
|
|
|
|
message := MessageSendRequest{
|
2018-09-13 11:38:13 +03:00
|
|
|
|
Type: MsgTypeText,
|
2018-08-29 02:44:06 +03:00
|
|
|
|
Scope: "public",
|
|
|
|
|
Content: "test",
|
|
|
|
|
ChatID: i,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s, status, err := c.MessageSend(message)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("%d %v", status, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
assert.NotEmpty(t, s.MessageID)
|
|
|
|
|
|
|
|
|
|
edit := MessageEditRequest{
|
|
|
|
|
ID: s.MessageID,
|
|
|
|
|
Content: "test",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
e, status, err := c.MessageEdit(edit)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("%d %v", status, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
t.Logf("Message edit: %v", e)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestMgClient_MessageDelete(t *testing.T) {
|
|
|
|
|
c := client()
|
|
|
|
|
i, err := strconv.ParseUint(os.Getenv("MG_BOT_CHAT"), 10, 64)
|
|
|
|
|
message := MessageSendRequest{
|
2018-09-13 11:38:13 +03:00
|
|
|
|
Type: MsgTypeText,
|
2018-08-29 02:44:06 +03:00
|
|
|
|
Scope: "public",
|
|
|
|
|
Content: "test",
|
|
|
|
|
ChatID: i,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s, status, err := c.MessageSend(message)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("%d %v", status, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
assert.NotEmpty(t, s.MessageID)
|
|
|
|
|
|
|
|
|
|
d, status, err := c.MessageDelete(s.MessageID)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("%d %v", status, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
t.Logf("Message delete: %v", d)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestMgClient_Info(t *testing.T) {
|
|
|
|
|
c := client()
|
|
|
|
|
req := InfoRequest{Name: "AWESOME", Avatar: os.Getenv("MG_BOT_LOGO")}
|
|
|
|
|
|
|
|
|
|
_, status, err := c.Info(req)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("%d %v", status, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestMgClient_Commands(t *testing.T) {
|
|
|
|
|
c := client()
|
|
|
|
|
req := CommandsRequest{}
|
|
|
|
|
|
|
|
|
|
data, status, err := c.Commands(req)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("%d %v", status, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
assert.NotEmpty(t, data)
|
|
|
|
|
|
|
|
|
|
for _, command := range data {
|
|
|
|
|
assert.NotEmpty(t, command.Description)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestMgClient_CommandEditDelete(t *testing.T) {
|
|
|
|
|
c := client()
|
|
|
|
|
req := CommandEditRequest{
|
|
|
|
|
Name: "show_payment_types",
|
|
|
|
|
Description: "Get available payment types",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
n, status, err := c.CommandEdit(req)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("%d %v", status, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
assert.NotEmpty(t, n.ID)
|
|
|
|
|
|
|
|
|
|
d, status, err := c.CommandDelete(n.Name)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("%d %v", status, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
t.Logf("%v", d)
|
|
|
|
|
}
|
2018-09-01 00:41:29 +03:00
|
|
|
|
|
|
|
|
|
func TestMgClient_WsMeta(t *testing.T) {
|
|
|
|
|
c := client()
|
|
|
|
|
events := []string{"user_updated", "user_join_chat"}
|
|
|
|
|
url, headers, err := c.WsMeta(events)
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("%v", err)
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-04 11:30:00 +03:00
|
|
|
|
resUrl := fmt.Sprintf("%s%s%s%s", strings.Replace(c.URL, "https", "wss", 1), prefix, "/ws?events=", strings.Join(events[:], ","))
|
2018-09-01 00:41:29 +03:00
|
|
|
|
resToken := c.Token
|
|
|
|
|
|
|
|
|
|
assert.Equal(t, resUrl, url)
|
|
|
|
|
assert.Equal(t, resToken, headers["X-Bot-Token"][0])
|
|
|
|
|
}
|
2018-09-20 11:41:20 +03:00
|
|
|
|
|
2018-12-26 17:38:41 +03:00
|
|
|
|
func TestMgClient_UploadFile(t *testing.T) {
|
|
|
|
|
c := client()
|
|
|
|
|
|
|
|
|
|
resp, err := http.Get("https://via.placeholder.com/300")
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("%v", err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
|
|
data, status, err := c.UploadFile(resp.Body)
|
|
|
|
|
|
|
|
|
|
if status != http.StatusOK {
|
|
|
|
|
t.Errorf("%v", err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
t.Logf("File %+v is upload", data)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestMgClient_ImageMessages(t *testing.T) {
|
|
|
|
|
c := client()
|
|
|
|
|
|
|
|
|
|
uploadFileResponse, st, err := c.UploadFileByURL(UploadFileByUrlRequest{
|
|
|
|
|
Url: "https://via.placeholder.com/300",
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
if st != http.StatusOK {
|
|
|
|
|
t.Errorf("%v", err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
t.Logf("File %+v is upload", uploadFileResponse.ID)
|
|
|
|
|
|
|
|
|
|
i, err := strconv.ParseUint(os.Getenv("MG_BOT_CHAT"), 10, 64)
|
|
|
|
|
message := MessageSendRequest{
|
|
|
|
|
Type: MsgTypeImage,
|
|
|
|
|
Scope: MessageScopePublic,
|
|
|
|
|
Items: []Item{{ID: uploadFileResponse.ID}},
|
|
|
|
|
ChatID: i,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
data, status, err := c.MessageSend(message)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("%d %v", status, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
assert.NotEmpty(t, data.MessageID)
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-20 11:41:20 +03:00
|
|
|
|
func RandStringBytesMaskImprSrc(n int) string {
|
|
|
|
|
b := make([]byte, n)
|
|
|
|
|
// A src.Int63() generates 63 random bits, enough for letterIdxMax characters!
|
|
|
|
|
for i, cache, remain := n-1, src.Int63(), letterIdxMax; i >= 0; {
|
|
|
|
|
if remain == 0 {
|
|
|
|
|
cache, remain = src.Int63(), letterIdxMax
|
|
|
|
|
}
|
|
|
|
|
if idx := int(cache & letterIdxMask); idx < len(letterBytes) {
|
|
|
|
|
b[i] = letterBytes[idx]
|
|
|
|
|
i--
|
|
|
|
|
}
|
|
|
|
|
cache >>= letterIdxBits
|
|
|
|
|
remain--
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return string(b)
|
|
|
|
|
}
|