-
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.
- Loading branch information
Showing
5 changed files
with
143 additions
and
2 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,64 @@ | ||
package model | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestCreateComment(t *testing.T) { | ||
cases := []struct { | ||
name string | ||
payload *CreateCommentPayload | ||
fail bool | ||
}{ | ||
{ | ||
name: "正常系", | ||
payload: &CreateCommentPayload{ | ||
ItemID: 1, | ||
UserID: "user1", | ||
Comment: "comment1", | ||
}, | ||
fail: false, | ||
}, | ||
{ | ||
name: "異常系: ItemIDが存在しない", | ||
payload: &CreateCommentPayload{ | ||
UserID: "user1", | ||
Comment: "comment1", | ||
}, | ||
fail: true, | ||
}, | ||
{ | ||
name: "異常系: UserIDが存在しない", | ||
payload: &CreateCommentPayload{ | ||
ItemID: 1, | ||
Comment: "comment1", | ||
}, | ||
fail: true, | ||
}, | ||
{ | ||
name: "異常系: Commentが存在しない", | ||
payload: &CreateCommentPayload{ | ||
ItemID: 1, | ||
UserID: "user1", | ||
}, | ||
fail: true, | ||
}, | ||
} | ||
|
||
assert := assert.New(t) | ||
for _, tt := range cases { | ||
t.Run(tt.name, func(t *testing.T) { | ||
c, err := CreateComment(tt.payload) | ||
if tt.fail { | ||
assert.Error(err) | ||
} else { | ||
assert.NoError(err) | ||
assert.Equal(tt.payload.ItemID, c.ItemID) | ||
assert.Equal(tt.payload.UserID, c.UserID) | ||
assert.Equal(tt.payload.Comment, c.Comment) | ||
} | ||
}) | ||
} | ||
} |
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,46 @@ | ||
package router | ||
|
||
import ( | ||
"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("s9")) | ||
|
||
cases := []struct { | ||
name string | ||
payload string | ||
expected int | ||
}{ | ||
{ | ||
name: "正常系", | ||
payload: `{"text":"テストコメント"}`, | ||
expected: 201, | ||
}, | ||
{ | ||
name: "異常系: 空文字列", | ||
payload: `{"text":""}`, | ||
expected: 400, | ||
}, | ||
{ | ||
name: "異常系: パラメータ不足", | ||
payload: `{}`, | ||
expected: 400, | ||
}, | ||
} | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package router | ||
|
||
import ( | ||
"net/http/httptest" | ||
"strings" | ||
|
||
"github.com/labstack/echo/v4" | ||
) | ||
|
||
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 | ||
} |