It was a good decision in hindsight to keep the public module as 0.x because this would have been a breaking change again. https://mattermost.atlassian.net/browse/MM-53032 ```release-note Changed the Go module path from github.com/mattermost/mattermost-server/server/v8 to github.com/mattermost/mattermost/server/v8. For the public facing module, it's path is also changed from github.com/mattermost/mattermost-server/server/public to github.com/mattermost/mattermost/server/public ```
154 строки
3.6 KiB
Go
154 строки
3.6 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package model
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
// https://github.com/mattermost/mattermost-plugin-starter-template/issues/115
|
|
func TestClient4TrimTrailingSlash(t *testing.T) {
|
|
slashes := []int{0, 1, 5}
|
|
baseURL := "https://foo.com:1234"
|
|
|
|
for _, s := range slashes {
|
|
testURL := baseURL + strings.Repeat("/", s)
|
|
client := NewAPIv4Client(testURL)
|
|
assert.Equal(t, baseURL, client.URL)
|
|
assert.Equal(t, baseURL+APIURLSuffix, client.APIURL)
|
|
}
|
|
}
|
|
|
|
// https://github.com/mattermost/mattermost/server/v8/channels/issues/8205
|
|
func TestClient4CreatePost(t *testing.T) {
|
|
post := &Post{
|
|
Props: map[string]any{
|
|
"attachments": []*SlackAttachment{
|
|
{
|
|
Actions: []*PostAction{
|
|
{
|
|
Integration: &PostActionIntegration{
|
|
Context: map[string]any{
|
|
"foo": "bar",
|
|
},
|
|
URL: "http://foo.com",
|
|
},
|
|
Name: "Foo",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
var post Post
|
|
err := json.NewDecoder(r.Body).Decode(&post)
|
|
assert.NoError(t, err)
|
|
attachments := post.Attachments()
|
|
assert.Equal(t, []*SlackAttachment{
|
|
{
|
|
Actions: []*PostAction{
|
|
{
|
|
Integration: &PostActionIntegration{
|
|
Context: map[string]any{
|
|
"foo": "bar",
|
|
},
|
|
URL: "http://foo.com",
|
|
},
|
|
Name: "Foo",
|
|
},
|
|
},
|
|
},
|
|
}, attachments)
|
|
err = json.NewEncoder(w).Encode(&post)
|
|
assert.NoError(t, err)
|
|
}))
|
|
|
|
client := NewAPIv4Client(server.URL)
|
|
_, resp, err := client.CreatePost(context.Background(), post)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, http.StatusOK, resp.StatusCode)
|
|
}
|
|
|
|
func TestClient4SetToken(t *testing.T) {
|
|
expected := NewId()
|
|
|
|
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
authHeader := r.Header.Get(HeaderAuth)
|
|
|
|
token := strings.Split(authHeader, HeaderBearer)
|
|
|
|
if len(token) < 2 {
|
|
t.Errorf("wrong authorization header format, got %s, expected: %s %s", authHeader, HeaderBearer, expected)
|
|
}
|
|
|
|
assert.Equal(t, expected, strings.TrimSpace(token[1]))
|
|
|
|
var user User
|
|
err := json.NewEncoder(w).Encode(&user)
|
|
assert.NoError(t, err)
|
|
}))
|
|
|
|
client := NewAPIv4Client(server.URL)
|
|
client.SetToken(expected)
|
|
|
|
_, resp, err := client.GetMe(context.Background(), "")
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, http.StatusOK, resp.StatusCode)
|
|
}
|
|
|
|
func TestClient4RequestCancellation(t *testing.T) {
|
|
t.Run("cancel before making the reqeust", func(t *testing.T) {
|
|
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
t.Fatal("request should not hit the server")
|
|
}))
|
|
|
|
client := NewAPIv4Client(server.URL)
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
cancel()
|
|
|
|
_, resp, err := client.GetMe(ctx, "")
|
|
assert.Error(t, err)
|
|
assert.ErrorIs(t, err, context.Canceled)
|
|
assert.Nil(t, resp)
|
|
})
|
|
|
|
t.Run("cancel after making the reqeust", func(t *testing.T) {
|
|
|
|
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
time.Sleep(100 * time.Millisecond)
|
|
t.Fatal("request should not hit the server")
|
|
}))
|
|
|
|
client := NewAPIv4Client(server.URL)
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
done := make(chan struct{})
|
|
go func() {
|
|
_, resp, err := client.GetMe(ctx, "")
|
|
assert.Error(t, err)
|
|
assert.ErrorIs(t, err, context.Canceled)
|
|
assert.Nil(t, resp)
|
|
|
|
done <- struct{}{}
|
|
|
|
}()
|
|
cancel()
|
|
|
|
<-done
|
|
})
|
|
}
|