I'm setting unit test in golang
.
But now I'm facing error when running go test -v
.
I want to resolve this error and make test success.
article
├ client
├ api
│ ├ main.go
│ ├ contoroller
│ │ ├ contoroller.go
│ │ └ contoroller_test.go
│ ├ service
│ │ ├ service.go
│ │ └ service_test.go
│ ├ dao
│ │ ├ dao.go
│ │ └ dao_test.go
│ ├ s3
│ │ ├ s3.go
│ │ └ s3_test.go
│ ├ go.mod
│ ├ go.sum
│ └ Dockerfile
├ nginx
└ docker-compose.yml
Now I'm setting service_test.go
for service.go
.
service_test.go
package service
// import
type MockDaoInterface struct {
}
func (_m *MockDaoInterface) GetArticleDao() *sql.Rows {
db, mock, _ := sqlmock.New()
mockRows := mock.NewRows([]string{"id", "uuid", "title", "content"}).
AddRow(1, "bea1b24d-0627-4ea0-aa2b-8af4c6c2a41c", "test", "test").
AddRow(2, "844bc620-7336-41a3-9cb4-552a0024ff1c", "test2", "test2")
mock.ExpectQuery("select").WillReturnRows(mockRows)
rows, _ := db.Query("select")
return rows
}
type ServiceSuite struct {
suite.Suite
service *Service
dao dao.DaoInterface
}
func (s *ServiceSuite) SetupTest() {
s.service = NewService(s.dao)
s.service.dao = &MockDaoInterface{}
}
func (s *ServiceSuite) TestGetArticleService(t *testing.T) {
articles := s.service.GetArticleService()
var expectedArticles []util.Article
expectedArticle1 := util.Article{
ID: 1,
UUID: "bea1b24d-0627-4ea0-aa2b-8af4c6c2a41c",
TITLE: "test",
CONTENT: "test",
}
expectedArticles = append(expectedArticles, expectedArticle1)
expectedArticle2 := util.Article{
ID: 2,
UUID: "844bc620-7336-41a3-9cb4-552a0024ff1c",
TITLE: "test2",
CONTENT: "test2",
}
expectedArticles = append(expectedArticles, expectedArticle2)
assert.Equal(s.T(), expectedArticles, articles)
}
func TestServiceSuite(t *testing.T) {
suite.Run(t, new(ServiceSuite))
}
service.go
package service
// import
type Service struct {
dao dao.DaoInterface
}
func NewService(dao dao.DaoInterface) *Service {
return &Service{dao: dao}
}
func (s Service) GetArticleService() []util.Article {
var articles []util.Article
results := s.dao.GetArticleDao()
article := util.Article{}
for results.Next() {
err := results.Scan(&article.ID, &article.UUID, &article.TITLE, &article.CONTENT)
if err != nil {
panic(err.Error())
} else {
articles = append(articles, article)
}
}
return articles
}
dao.go
package dao
// import
type Dao struct {
database *sql.DB
s3 s3.S3Interface
}
func NewDao(database *sql.DB, s3 s3.S3Interface) *Dao {
objs := &Dao{database: database, s3: s3}
return objs
}
type DaoInterface interface {
GetArticleDao() *sql.Rows
}
Here is the full source code(branch: go-test-service)
https://github.com/jpskgc/article/tree/go-test-service
I expect service_test.go
to success test.
But the actual is it fails with error.
I want to resolve this error and to success test.
$ go test -v
=== RUN TestServiceSuite
=== RUN TestServiceSuite/TestGetArticleService
--- FAIL: TestServiceSuite (0.00s)
--- FAIL: TestServiceSuite/TestGetArticleService (0.00s)
suite.go:61: test panicked: reflect: Call with too few input arguments
FAIL
exit status 1
FAIL article/api/service 0.045s
*sql.Rows
object. Please seedatabase/sql
documentation on how to properly use that type of result. If you don't do it, your program will keep crashing because of too-many-connections open. – Accidence