-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix team user api * fix tests * fix api * fix team user api * change user convert * fix tests * fix tests
- Loading branch information
Showing
2 changed files
with
45 additions
and
0 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,36 @@ | ||
// Copyright 2019 The Gitea Authors. All rights reserved. | ||
// Use of this source code is governed by a MIT-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package integrations | ||
|
||
import ( | ||
"net/http" | ||
"testing" | ||
"time" | ||
|
||
"code.gitea.io/gitea/models" | ||
api "code.gitea.io/gitea/modules/structs" | ||
"code.gitea.io/gitea/routers/api/v1/convert" | ||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestAPITeamUser(t *testing.T) { | ||
prepareTestEnv(t) | ||
|
||
normalUsername := "user2" | ||
session := loginUser(t, normalUsername) | ||
token := getTokenForLoggedInUser(t, session) | ||
req := NewRequest(t, "GET", "/api/v1/teams/1/members/user1?token="+token) | ||
session.MakeRequest(t, req, http.StatusNotFound) | ||
|
||
req = NewRequest(t, "GET", "/api/v1/teams/1/members/user2?token="+token) | ||
resp := session.MakeRequest(t, req, http.StatusOK) | ||
var user2 *api.User | ||
DecodeJSON(t, resp, &user2) | ||
user2.Created = user2.Created.In(time.Local) | ||
user2.LastLogin = user2.LastLogin.In(time.Local) | ||
user := models.AssertExistsAndLoadBean(t, &models.User{Name: "user2"}).(*models.User) | ||
|
||
assert.Equal(t, convert.ToUser(user, true, false), user2) | ||
} |
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