mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-03 16:01:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			52 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// 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 models
 | 
						|
 | 
						|
package integrations
 | 
						|
 | 
						|
import (
 | 
						|
	"net/http"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	api "code.gitea.io/gitea/modules/structs"
 | 
						|
 | 
						|
	"github.com/stretchr/testify/assert"
 | 
						|
)
 | 
						|
 | 
						|
type SearchResults struct {
 | 
						|
	OK   bool        `json:"ok"`
 | 
						|
	Data []*api.User `json:"data"`
 | 
						|
}
 | 
						|
 | 
						|
func TestAPIUserSearchLoggedIn(t *testing.T) {
 | 
						|
	defer prepareTestEnv(t)()
 | 
						|
	adminUsername := "user1"
 | 
						|
	session := loginUser(t, adminUsername)
 | 
						|
	token := getTokenForLoggedInUser(t, session)
 | 
						|
	query := "user2"
 | 
						|
	req := NewRequestf(t, "GET", "/api/v1/users/search?token=%s&q=%s", token, query)
 | 
						|
	resp := session.MakeRequest(t, req, http.StatusOK)
 | 
						|
 | 
						|
	var results SearchResults
 | 
						|
	DecodeJSON(t, resp, &results)
 | 
						|
	assert.NotEmpty(t, results.Data)
 | 
						|
	for _, user := range results.Data {
 | 
						|
		assert.Contains(t, user.UserName, query)
 | 
						|
		assert.NotEmpty(t, user.Email)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestAPIUserSearchNotLoggedIn(t *testing.T) {
 | 
						|
	defer prepareTestEnv(t)()
 | 
						|
	query := "user2"
 | 
						|
	req := NewRequestf(t, "GET", "/api/v1/users/search?q=%s", query)
 | 
						|
	resp := MakeRequest(t, req, http.StatusOK)
 | 
						|
 | 
						|
	var results SearchResults
 | 
						|
	DecodeJSON(t, resp, &results)
 | 
						|
	assert.NotEmpty(t, results.Data)
 | 
						|
	for _, user := range results.Data {
 | 
						|
		assert.Contains(t, user.UserName, query)
 | 
						|
		assert.Empty(t, user.Email)
 | 
						|
	}
 | 
						|
}
 |