Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
backend
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
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
idatt2106-v23-03
backend
Commits
32347be6
Commit
32347be6
authored
1 year ago
by
Birk Øvstetun Narvhus
Browse files
Options
Downloads
Patches
Plain Diff
added test for productRepo
parent
3e8fbe91
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/test/java/ntnu/idatt2016/v233/SmartMat/repository/ProductRepositoryTest.java
+89
-0
89 additions, 0 deletions
...t2016/v233/SmartMat/repository/ProductRepositoryTest.java
with
89 additions
and
0 deletions
src/test/java/ntnu/idatt2016/v233/SmartMat/repository/ProductRepositoryTest.java
0 → 100644
+
89
−
0
View file @
32347be6
package
ntnu.idatt2016.v233.SmartMat.repository
;
import
static
org
.
junit
.
jupiter
.
api
.
Assertions
.
assertEquals
;
import
static
org
.
junit
.
jupiter
.
api
.
Assertions
.
assertFalse
;
import
static
org
.
junit
.
jupiter
.
api
.
Assertions
.
assertNotNull
;
import
static
org
.
junit
.
jupiter
.
api
.
Assertions
.
assertTrue
;
import
java.util.List
;
import
java.util.Optional
;
import
org.junit.jupiter.api.BeforeEach
;
import
org.junit.jupiter.api.DisplayName
;
import
org.junit.jupiter.api.Test
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest
;
import
org.springframework.boot.test.autoconfigure.orm.jpa.TestEntityManager
;
import
ntnu.idatt2016.v233.SmartMat.entity.product.Product
;
@DataJpaTest
public
class
ProductRepositoryTest
{
@Autowired
private
ProductRepository
productRepository
;
@Autowired
private
TestEntityManager
entityManager
;
private
Product
product
;
@BeforeEach
public
void
setUp
()
{
product
=
Product
.
builder
()
.
ean
(
1234567890123L
)
.
name
(
"Test Product"
)
.
description
(
"This is a test product"
)
.
category_name
(
"TestCategory"
)
.
build
();
entityManager
.
persist
(
product
);
}
@Test
@DisplayName
(
"Test getProductByName"
)
public
void
testGetProductByName
()
{
Optional
<
Product
>
foundProduct
=
productRepository
.
getByName
(
product
.
getName
());
assertTrue
(
foundProduct
.
isPresent
());
assertEquals
(
product
.
getName
(),
foundProduct
.
get
().
getName
());
}
@Test
@DisplayName
(
"Test getProductByNameNotFound"
)
public
void
testGetProductByNameNotFound
()
{
Optional
<
Product
>
foundProduct
=
productRepository
.
getByName
(
"Nonexistent Product"
);
assertFalse
(
foundProduct
.
isPresent
());
}
@Test
@DisplayName
(
"Test getAllProducts"
)
public
void
testGetAllProducts
()
{
List
<
Product
>
products
=
productRepository
.
findAll
();
assertNotNull
(
products
);
assertEquals
(
1
,
products
.
size
());
}
@Test
@DisplayName
(
"Test saveProduct"
)
public
void
testSaveProduct
()
{
Product
newProduct
=
Product
.
builder
()
.
ean
(
1234567890124L
)
.
name
(
"New Product"
)
.
description
(
"This is a new product"
)
.
category_name
(
"TestCategory"
)
.
build
();
productRepository
.
save
(
newProduct
);
List
<
Product
>
products
=
productRepository
.
findAll
();
assertNotNull
(
products
);
assertEquals
(
2
,
products
.
size
());
}
@Test
@DisplayName
(
"Test deleteProduct"
)
public
void
testDeleteProduct
()
{
productRepository
.
delete
(
product
);
List
<
Product
>
products
=
productRepository
.
findAll
();
assertNotNull
(
products
);
assertEquals
(
0
,
products
.
size
());
}
}
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