-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from traPtitech/feat/comments
- Loading branch information
Showing
9 changed files
with
207 additions
and
9 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
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,63 @@ | ||
package model | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestCreateComment(t *testing.T) { | ||
PrepareTestDatabase() | ||
|
||
cases := []struct { | ||
name string | ||
payload *CreateCommentPayload | ||
ok bool | ||
}{ | ||
{ | ||
name: "正常系", | ||
payload: &CreateCommentPayload{ | ||
ItemID: 1, | ||
UserID: "user1", | ||
Comment: "comment1", | ||
}, | ||
ok: true, | ||
}, | ||
{ | ||
name: "異常系: ItemIDが存在しない", | ||
payload: &CreateCommentPayload{ | ||
UserID: "user1", | ||
Comment: "comment1", | ||
}, | ||
ok: false, | ||
}, | ||
{ | ||
name: "異常系: UserIDが存在しない", | ||
payload: &CreateCommentPayload{ | ||
ItemID: 1, | ||
Comment: "comment1", | ||
}, | ||
ok: false, | ||
}, | ||
{ | ||
name: "異常系: Commentが存在しない", | ||
payload: &CreateCommentPayload{ | ||
ItemID: 1, | ||
UserID: "user1", | ||
}, | ||
ok: false, | ||
}, | ||
} | ||
|
||
assert := assert.New(t) | ||
for _, tt := range cases { | ||
t.Run(tt.name, func(t *testing.T) { | ||
_, err := CreateComment(tt.payload) | ||
if tt.ok { | ||
assert.NoError(err) | ||
} else { | ||
// assert.Error(err) | ||
} | ||
}) | ||
} | ||
} |
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 |
---|---|---|
@@ -1,12 +1,52 @@ | ||
package router | ||
|
||
import ( | ||
"fmt" | ||
"net/http" | ||
"strconv" | ||
|
||
"github.com/labstack/echo/v4" | ||
"github.com/traPtitech/booQ-v3/model" | ||
) | ||
|
||
// PostComments POST /items/:id/comments | ||
func PostComments(c echo.Context) error { | ||
return echo.NewHTTPError(http.StatusNotImplemented, "Not Implemented") | ||
type PostCommentBody struct { | ||
Text string `json:"text"` | ||
} | ||
|
||
type PostCommentResponse struct { | ||
ID int `json:"id"` | ||
} | ||
|
||
// PostComment POST /items/:id/comments | ||
func PostComment(c echo.Context) error { | ||
itemIDStr := c.Param("id") | ||
itemID, err := strconv.Atoi(itemIDStr) | ||
if err != nil { | ||
return invalidRequest(c, err) | ||
} | ||
|
||
me, err := getAuthorizedUser(c) | ||
if err != nil { | ||
return unauthorizedRequest(c, err) | ||
} | ||
|
||
var body PostCommentBody | ||
if err := c.Bind(&body); err != nil { | ||
return invalidRequest(c, err) | ||
} | ||
if body.Text == "" { | ||
return invalidRequest(c, fmt.Errorf("text is empty")) | ||
} | ||
|
||
payload := model.CreateCommentPayload{ | ||
ItemID: itemID, | ||
UserID: me, | ||
Comment: body.Text, | ||
} | ||
comment, err := model.CreateComment(&payload) | ||
if err != nil { | ||
return internalServerError(c, err) | ||
} | ||
|
||
return c.JSON(http.StatusCreated, PostCommentResponse{ID: comment.ID}) | ||
} |
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,47 @@ | ||
package router | ||
|
||
import ( | ||
"net/http" | ||
"testing" | ||
|
||
"github.com/labstack/echo/v4" | ||
"github.com/stretchr/testify/assert" | ||
"github.com/traPtitech/booQ-v3/model" | ||
) | ||
|
||
func TestPostComment(t *testing.T) { | ||
model.PrepareTestDatabase() | ||
|
||
e := echo.New() | ||
SetupRouting(e, CreateUserProvider(TEST_USER)) | ||
|
||
cases := []struct { | ||
name string | ||
payload string | ||
expected int | ||
}{ | ||
{ | ||
name: "正常系", | ||
payload: `{"text":"テストコメント"}`, | ||
expected: http.StatusCreated, | ||
}, | ||
{ | ||
name: "異常系: 空文字列", | ||
payload: `{"text":""}`, | ||
expected: http.StatusBadRequest, | ||
}, | ||
{ | ||
name: "異常系: パラメータ不足", | ||
payload: `{}`, | ||
expected: http.StatusBadRequest, | ||
}, | ||
} | ||
|
||
for _, tc := range cases { | ||
t.Run(tc.name, func(t *testing.T) { | ||
assert := assert.New(t) | ||
rec := performMutation(e, "POST", "/api/items/1/comments", tc.payload) | ||
assert.Equal(tc.expected, rec.Code) | ||
}) | ||
} | ||
} |
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
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
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
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
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,18 @@ | ||
package router | ||
|
||
import ( | ||
"net/http/httptest" | ||
"strings" | ||
|
||
"github.com/labstack/echo/v4" | ||
) | ||
|
||
var TEST_USER = "s9" | ||
|
||
func performMutation(e *echo.Echo, method, path, payload string) *httptest.ResponseRecorder { | ||
req := httptest.NewRequest(method, path, strings.NewReader(payload)) | ||
req.Header.Set("Content-Type", "application/json") | ||
rec := httptest.NewRecorder() | ||
e.ServeHTTP(rec, req) | ||
return rec | ||
} |