diff options
Diffstat (limited to 'internal/db/bundb/report_test.go')
-rw-r--r-- | internal/db/bundb/report_test.go | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/internal/db/bundb/report_test.go b/internal/db/bundb/report_test.go index 85bc4b36f..27e4e758c 100644 --- a/internal/db/bundb/report_test.go +++ b/internal/db/bundb/report_test.go @@ -60,6 +60,22 @@ func (suite *ReportTestSuite) TestGetReportByURI() { suite.NotEmpty(report.URI) } +func (suite *ReportTestSuite) TestGetAllReports() { + reports, err := suite.db.GetReports(context.Background(), nil, "", "", "", "", "", 0) + suite.NoError(err) + suite.NotEmpty(reports) +} + +func (suite *ReportTestSuite) TestGetAllReportsByAccountID() { + accountID := suite.testAccounts["local_account_2"].ID + reports, err := suite.db.GetReports(context.Background(), nil, accountID, "", "", "", "", 0) + suite.NoError(err) + suite.NotEmpty(reports) + for _, r := range reports { + suite.Equal(accountID, r.AccountID) + } +} + func (suite *ReportTestSuite) TestPutReport() { ctx := context.Background() |