mirror of
				https://github.com/cloudreve/cloudreve.git
				synced 2025-10-31 00:27:31 +08:00 
			
		
		
		
	Test: #765
This commit is contained in:
		| @ -352,10 +352,20 @@ func TestUser_IncreaseStorageWithoutCheck(t *testing.T) { | ||||
| 	} | ||||
| } | ||||
|  | ||||
| func TestGetUserByEmail(t *testing.T) { | ||||
| func TestGetActiveUserByEmail(t *testing.T) { | ||||
| 	asserts := assert.New(t) | ||||
|  | ||||
| 	mock.ExpectQuery("SELECT(.+)").WithArgs(Active, "abslant@foxmail.com").WillReturnRows(sqlmock.NewRows([]string{"id", "email"})) | ||||
| 	_, err := GetActiveUserByEmail("abslant@foxmail.com") | ||||
|  | ||||
| 	asserts.Error(err) | ||||
| 	asserts.NoError(mock.ExpectationsWereMet()) | ||||
| } | ||||
|  | ||||
| func TestGetUserByEmail(t *testing.T) { | ||||
| 	asserts := assert.New(t) | ||||
|  | ||||
| 	mock.ExpectQuery("SELECT(.+)").WithArgs("abslant@foxmail.com").WillReturnRows(sqlmock.NewRows([]string{"id", "email"})) | ||||
| 	_, err := GetUserByEmail("abslant@foxmail.com") | ||||
|  | ||||
| 	asserts.Error(err) | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 HFO4
					HFO4