mirror of
				https://github.com/photoprism/photoprism.git
				synced 2025-10-31 04:06:43 +08:00 
			
		
		
		
	 650817a9e0
			
		
	
	650817a9e0
	
	
	
		
			
			Finding the right code is easier when the name matches related functionality in other packages.
		
			
				
	
	
		
			28 lines
		
	
	
		
			656 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			656 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package api
 | |
| 
 | |
| import (
 | |
| 	"net/http"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/tidwall/gjson"
 | |
| 
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| )
 | |
| 
 | |
| func TestSearchFaces(t *testing.T) {
 | |
| 	t.Run("Success", func(t *testing.T) {
 | |
| 		app, router, _ := NewApiTest()
 | |
| 		SearchFaces(router)
 | |
| 		r := PerformRequest(app, "GET", "/api/v1/faces?count=15")
 | |
| 		count := gjson.Get(r.Body.String(), "#")
 | |
| 		assert.LessOrEqual(t, int64(4), count.Int())
 | |
| 		assert.Equal(t, http.StatusOK, r.Code)
 | |
| 	})
 | |
| 	t.Run("InvalidRequest", func(t *testing.T) {
 | |
| 		app, router, _ := NewApiTest()
 | |
| 		SearchFaces(router)
 | |
| 		r := PerformRequest(app, "GET", "/api/v1/faces?xxx=15")
 | |
| 		assert.Equal(t, http.StatusBadRequest, r.Code)
 | |
| 	})
 | |
| }
 |