-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProduitsApplicationTests.java
64 lines (59 loc) · 1.31 KB
/
ProduitsApplicationTests.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.example.demo;
import java.sql.Date;
import java.util.List;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class ProduitsApplicationTests {
@Autowired
private ProduitRepository produitRepository;
@Test
public void testCreateProduit() {
@SuppressWarnings("deprecation")
Produit prod = new Produit("PC Dell",2200.500,new Date(0, 0, 0));
produitRepository.save(prod);
}
@Test
public void testFindProduit()
{
Produit p = produitRepository.findById(1L).get();
System.out.println(p);
}
@Test
public void testUpdateProduit()
{
Produit p = produitRepository.findById(1L).get();
p.setPrixProduit(1000.0);
produitRepository.save(p);
}
@Test
public void testFindByNomProduit()
{
List<Produit> prods = produitRepository.findByNomProduit();
for (Produit p : prods)
{
System.out.println(p);
}
}
@Test
public void testfindByNomPrix()
{
List<Produit> prods = produitRepository.findByNomPrix("dell",1000.0);
for (Produit p : prods)
{
System.out.println(p);
}
}
@Test
public void testfindByCategorie()
{
Categorie cat = new Categorie();
cat.setIdCat(1L); //afficher les produits de catégorie 1
List<Produit> prods = produitRepository.findByCategorie(cat);
for (Produit p : prods)
{
System.out.println(p);
}
}
}