Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pv168-01-todo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ondřej Hrdlička
pv168-01-todo
Commits
bd963f65
There was an error fetching the commit references. Please try again later.
Commit
bd963f65
authored
3 years ago
by
Patrik Michal Vlcek
Browse files
Options
Downloads
Patches
Plain Diff
implemented first unit test for CategoryTimeDao
parent
834e2b73
No related branches found
No related tags found
2 merge requests
!52
Final project MR
,
!48
Implement dao tests
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/test/java/cz/muni/fi/pv168/project/db/categorytime/CategoryTimeDaoTest.java
+93
-0
93 additions, 0 deletions
...fi/pv168/project/db/categorytime/CategoryTimeDaoTest.java
with
93 additions
and
0 deletions
src/test/java/cz/muni/fi/pv168/project/db/categorytime/CategoryTimeDaoTest.java
0 → 100644
+
93
−
0
View file @
bd963f65
package
cz.muni.fi.pv168.project.db.categorytime
;
import
cz.muni.fi.pv168.project.data.category.Category
;
import
cz.muni.fi.pv168.project.data.category.CategoryTime
;
import
cz.muni.fi.pv168.project.db.category.CategoryDao
;
import
cz.muni.fi.pv168.project.db.category.CategoryManager
;
import
org.apache.derby.jdbc.EmbeddedDataSource
;
import
org.junit.jupiter.api.AfterEach
;
import
org.junit.jupiter.api.BeforeAll
;
import
org.junit.jupiter.api.BeforeEach
;
import
org.junit.jupiter.api.Test
;
import
java.awt.Color
;
import
java.sql.SQLException
;
import
java.time.LocalDate
;
import
java.util.Arrays
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
class
CategoryTimeDaoTest
{
private
static
EmbeddedDataSource
dataSource
;
private
static
CategoryManager
categoryManager
;
private
CategoryTimeDao
categoryTimeDao
;
private
CategoryTimeManager
categoryTimeManager
;
private
CategoryDao
categoryDao
;
@BeforeAll
static
void
initTestDataSource
()
throws
SQLException
{
dataSource
=
new
EmbeddedDataSource
();
dataSource
.
setDatabaseName
(
"memory:todo-test"
);
dataSource
.
setCreateDatabase
(
"create"
);
}
@BeforeEach
void
createCategoryTimeDao
()
throws
SQLException
{
categoryDao
=
new
CategoryDao
(
dataSource
,
categoryTimeDao
);
categoryManager
=
new
CategoryManager
(
dataSource
);
categoryTimeDao
=
new
CategoryTimeDao
(
dataSource
);
categoryTimeManager
=
new
CategoryTimeManager
(
dataSource
);
}
@AfterEach
void
CategoryTimeDaoCleanUp
()
{
categoryTimeManager
.
dropTable
();
categoryManager
.
dropTable
();
}
@Test
void
getAllEntitiesForTask_ExistingTaskWithEntities_ReturnsAllEntities
()
{
var
category
=
new
Category
(
"Work"
,
Color
.
GREEN
);
categoryDao
.
add
(
category
);
var
categoryTimes
=
Arrays
.
asList
(
new
CategoryTime
(
LocalDate
.
EPOCH
,
10L
,
category
.
getId
()),
new
CategoryTime
(
LocalDate
.
EPOCH
,
5L
,
category
.
getId
()),
new
CategoryTime
(
LocalDate
.
EPOCH
,
999L
,
category
.
getId
()));
for
(
var
categoryTime
:
categoryTimes
)
{
categoryTimeDao
.
addEntityFor
(
category
.
getId
(),
categoryTime
);
}
assertThat
(
categoryTimeDao
.
getAllEntitiesFor
(
category
.
getId
())).
isEqualTo
(
categoryTimes
);
}
@Test
void
getAllEntitiesFor
()
{
}
@Test
void
deleteAllEntitiesFor
()
{
}
@Test
void
deleteAllEntitiesForTask
()
{
}
@Test
void
addEntityFor
()
{
}
@Test
void
update
()
{
}
@Test
void
delete
()
{
}
@Test
void
fetch
()
{
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment