2021-04-10 11:42:38 +05:30
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2021-04-10 11:42:38 +05:30
|
|
|
|
2022-09-03 00:48:23 +05:30
|
|
|
package integration
|
2021-04-10 11:42:38 +05:30
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2022-09-03 00:48:23 +05:30
|
|
|
"code.gitea.io/gitea/tests"
|
2021-04-10 11:42:38 +05:30
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestAPIListEmails(t *testing.T) {
|
2022-09-03 00:48:23 +05:30
|
|
|
defer tests.PrepareTestEnv(t)()
|
2021-04-10 11:42:38 +05:30
|
|
|
|
|
|
|
normalUsername := "user2"
|
|
|
|
session := loginUser(t, normalUsername)
|
|
|
|
token := getTokenForLoggedInUser(t, session)
|
|
|
|
|
|
|
|
req := NewRequest(t, "GET", "/api/v1/user/emails?token="+token)
|
2022-12-02 09:09:42 +05:30
|
|
|
resp := MakeRequest(t, req, http.StatusOK)
|
2021-04-10 11:42:38 +05:30
|
|
|
|
|
|
|
var emails []*api.Email
|
|
|
|
DecodeJSON(t, resp, &emails)
|
|
|
|
|
|
|
|
assert.EqualValues(t, []*api.Email{
|
|
|
|
{
|
|
|
|
Email: "user2@example.com",
|
|
|
|
Verified: true,
|
|
|
|
Primary: true,
|
|
|
|
},
|
|
|
|
{
|
2021-06-08 09:22:51 +05:30
|
|
|
Email: "user2-2@example.com",
|
2021-04-10 11:42:38 +05:30
|
|
|
Verified: false,
|
|
|
|
Primary: false,
|
|
|
|
},
|
|
|
|
}, emails)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAPIAddEmail(t *testing.T) {
|
2022-09-03 00:48:23 +05:30
|
|
|
defer tests.PrepareTestEnv(t)()
|
2021-04-10 11:42:38 +05:30
|
|
|
|
|
|
|
normalUsername := "user2"
|
|
|
|
session := loginUser(t, normalUsername)
|
|
|
|
token := getTokenForLoggedInUser(t, session)
|
|
|
|
|
|
|
|
opts := api.CreateEmailOption{
|
|
|
|
Emails: []string{"user101@example.com"},
|
|
|
|
}
|
|
|
|
|
|
|
|
req := NewRequestWithJSON(t, "POST", "/api/v1/user/emails?token="+token, &opts)
|
2022-12-02 09:09:42 +05:30
|
|
|
MakeRequest(t, req, http.StatusUnprocessableEntity)
|
2021-04-10 11:42:38 +05:30
|
|
|
|
|
|
|
opts = api.CreateEmailOption{
|
2021-06-08 09:22:51 +05:30
|
|
|
Emails: []string{"user2-3@example.com"},
|
2021-04-10 11:42:38 +05:30
|
|
|
}
|
|
|
|
req = NewRequestWithJSON(t, "POST", "/api/v1/user/emails?token="+token, &opts)
|
2022-12-02 09:09:42 +05:30
|
|
|
resp := MakeRequest(t, req, http.StatusCreated)
|
2021-04-10 11:42:38 +05:30
|
|
|
|
|
|
|
var emails []*api.Email
|
|
|
|
DecodeJSON(t, resp, &emails)
|
|
|
|
assert.EqualValues(t, []*api.Email{
|
|
|
|
{
|
2021-06-08 09:22:51 +05:30
|
|
|
Email: "user2-3@example.com",
|
2021-04-10 11:42:38 +05:30
|
|
|
Verified: true,
|
|
|
|
Primary: false,
|
|
|
|
},
|
|
|
|
}, emails)
|
2022-04-21 03:09:30 +05:30
|
|
|
|
|
|
|
opts = api.CreateEmailOption{
|
|
|
|
Emails: []string{"notAEmail"},
|
|
|
|
}
|
|
|
|
req = NewRequestWithJSON(t, "POST", "/api/v1/user/emails?token="+token, &opts)
|
2022-12-02 09:09:42 +05:30
|
|
|
MakeRequest(t, req, http.StatusUnprocessableEntity)
|
2021-04-10 11:42:38 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
func TestAPIDeleteEmail(t *testing.T) {
|
2022-09-03 00:48:23 +05:30
|
|
|
defer tests.PrepareTestEnv(t)()
|
2021-04-10 11:42:38 +05:30
|
|
|
|
|
|
|
normalUsername := "user2"
|
|
|
|
session := loginUser(t, normalUsername)
|
|
|
|
token := getTokenForLoggedInUser(t, session)
|
|
|
|
|
|
|
|
opts := api.DeleteEmailOption{
|
2021-06-08 09:22:51 +05:30
|
|
|
Emails: []string{"user2-3@example.com"},
|
2021-04-10 11:42:38 +05:30
|
|
|
}
|
|
|
|
req := NewRequestWithJSON(t, "DELETE", "/api/v1/user/emails?token="+token, &opts)
|
2022-12-02 09:09:42 +05:30
|
|
|
MakeRequest(t, req, http.StatusNotFound)
|
2021-04-10 11:42:38 +05:30
|
|
|
|
|
|
|
opts = api.DeleteEmailOption{
|
2021-06-08 09:22:51 +05:30
|
|
|
Emails: []string{"user2-2@example.com"},
|
2021-04-10 11:42:38 +05:30
|
|
|
}
|
|
|
|
req = NewRequestWithJSON(t, "DELETE", "/api/v1/user/emails?token="+token, &opts)
|
2022-12-02 09:09:42 +05:30
|
|
|
MakeRequest(t, req, http.StatusNoContent)
|
2021-04-10 11:42:38 +05:30
|
|
|
|
|
|
|
req = NewRequest(t, "GET", "/api/v1/user/emails?token="+token)
|
2022-12-02 09:09:42 +05:30
|
|
|
resp := MakeRequest(t, req, http.StatusOK)
|
2021-04-10 11:42:38 +05:30
|
|
|
|
|
|
|
var emails []*api.Email
|
|
|
|
DecodeJSON(t, resp, &emails)
|
|
|
|
assert.EqualValues(t, []*api.Email{
|
|
|
|
{
|
|
|
|
Email: "user2@example.com",
|
|
|
|
Verified: true,
|
|
|
|
Primary: true,
|
|
|
|
},
|
|
|
|
}, emails)
|
|
|
|
}
|