Compare commits
No commits in common. "master" and "ines" have entirely different histories.
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,5 +1,3 @@
|
||||
#pour netbeans
|
||||
Libraries/*
|
||||
Test Libraries/*
|
||||
/nbproject/private/
|
||||
/build/
|
||||
Test Libraries/*
|
@ -48,11 +48,7 @@ javac.source=21
|
||||
javac.target=21
|
||||
javac.test.classpath=\
|
||||
${javac.classpath}:\
|
||||
${build.classes.dir}:\
|
||||
${libs.testng.classpath}:\
|
||||
${libs.junit_5.classpath}:\
|
||||
${libs.junit_4.classpath}:\
|
||||
${libs.hamcrest.classpath}
|
||||
${build.classes.dir}
|
||||
javac.test.modulepath=\
|
||||
${javac.modulepath}
|
||||
javac.test.processorpath=\
|
||||
@ -75,7 +71,7 @@ jlink.additionalmodules=
|
||||
jlink.additionalparam=
|
||||
jlink.launcher=true
|
||||
jlink.launcher.name=MusicAndCo
|
||||
main.class=Test
|
||||
main.class=
|
||||
manifest.file=manifest.mf
|
||||
meta.inf.dir=${src.dir}/META-INF
|
||||
mkdist.disabled=false
|
||||
|
@ -1,38 +0,0 @@
|
||||
|
||||
import métiers.Commande;
|
||||
import métiers.Entreprise;
|
||||
import métiers.Instrument;
|
||||
|
||||
/*
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Main.java to edit this template
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @author sio
|
||||
*/
|
||||
public class Test {
|
||||
|
||||
/**
|
||||
* @param args the command line arguments
|
||||
*/
|
||||
public static void main(String[] args) {
|
||||
Entreprise lEntreprise=new Entreprise("MusicAndCo");
|
||||
Commande laCommande1 = new Commande(1,1,"12/09/2024");
|
||||
|
||||
//ajouter des instruments de l'entreprise à la commande
|
||||
|
||||
//affecter la commande à l'entreprise si la comamnde est possible
|
||||
lEntreprise.ajouterCommande(laCommande1);
|
||||
|
||||
//créer une autre commande
|
||||
|
||||
|
||||
//rechercher et afficher une commande
|
||||
|
||||
|
||||
//supprimer une des 2 commande
|
||||
}
|
||||
|
||||
}
|
@ -1,145 +1,13 @@
|
||||
/*
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
|
||||
package métiers;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.Objects;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author ilona
|
||||
*/
|
||||
public class Commande {
|
||||
|
||||
private int noCom, noVendeur;
|
||||
private String dateCom;
|
||||
|
||||
|
||||
private final HashMap<Instrument, Integer> lesLignes = new HashMap<>();
|
||||
|
||||
|
||||
public Commande(int noCom, int noVendeur, String dateCom) {
|
||||
this.noCom = noCom;
|
||||
this.noVendeur = noVendeur;
|
||||
this.dateCom = dateCom;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Ajoute une quantité donnée d'un instrument à la commande
|
||||
* @param unInstrument instrument à ajouter
|
||||
* @param qte quantité à ajouter
|
||||
* @return true si l'ajout est bon
|
||||
*/
|
||||
public boolean ajouter(Instrument unInstrument, int qte){
|
||||
|
||||
//il faut empêcher l'ajout d'une ligne avec une quantité à 0
|
||||
//bien s'assurer que le stock est suffisant
|
||||
boolean ajoutOK=false;
|
||||
if(qte!=0){
|
||||
//ajout d'un instrument existant dans la commande, ce sera une mise à jour de la ligne
|
||||
if (lesLignes.containsKey(unInstrument))//l'instrument existe
|
||||
{
|
||||
//récupération de la quantité en stock
|
||||
int oldQte=unInstrument.getQteStock();
|
||||
//réaffectation dans le stock de la quantité commandée
|
||||
int qteStock=oldQte+ this.getLesLignes().get(unInstrument);
|
||||
unInstrument.setQteStock(qteStock);
|
||||
//suppression ligne commande
|
||||
lesLignes.remove(unInstrument);
|
||||
//nouvel ajout
|
||||
this.ajouter(unInstrument,qte);
|
||||
|
||||
}
|
||||
else //nouvel instrument
|
||||
{
|
||||
//on s'assure qu'il y a assez de stock pour la commande
|
||||
|
||||
int qteDisponible = unInstrument.getQteStock();
|
||||
if (qteDisponible<qte){
|
||||
ajoutOK = false;
|
||||
}else {
|
||||
ajoutOK = true;
|
||||
lesLignes.put(unInstrument,qte);
|
||||
//màj qté stock pour déduire la qté commandée
|
||||
unInstrument.setQteStock(qteDisponible-qte);
|
||||
}
|
||||
}
|
||||
}
|
||||
return ajoutOK;
|
||||
}
|
||||
/**
|
||||
* Supprimer un instrument de la commande
|
||||
* @param unInstrument instrument à supprimer
|
||||
* @return true si la suppression est effectuée
|
||||
*/
|
||||
public boolean supprimer(Instrument unInstrument){
|
||||
//lesLignes.remove(unInstrument);
|
||||
boolean suppOK;
|
||||
if (lesLignes.containsKey(unInstrument) == true){
|
||||
suppOK = true;
|
||||
lesLignes.remove(unInstrument);
|
||||
} else {
|
||||
suppOK = false;
|
||||
}
|
||||
return suppOK;
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
public int getNoCom() {
|
||||
return noCom;
|
||||
}
|
||||
|
||||
public int getNoVendeur() {
|
||||
return noVendeur;
|
||||
}
|
||||
|
||||
public String getDateCom() {
|
||||
return dateCom;
|
||||
}
|
||||
|
||||
public HashMap<Instrument, Integer> getLesLignes() {
|
||||
return lesLignes;
|
||||
}
|
||||
|
||||
|
||||
public void setNoCom(int noCom) {
|
||||
this.noCom = noCom;
|
||||
}
|
||||
|
||||
public void setNoVendeur(int noVendeur) {
|
||||
this.noVendeur = noVendeur;
|
||||
}
|
||||
|
||||
public void setDateCom(String dateCom) {
|
||||
this.dateCom = dateCom;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj) {
|
||||
return true;
|
||||
}
|
||||
if (obj == null) {
|
||||
return false;
|
||||
}
|
||||
if (getClass() != obj.getClass()) {
|
||||
return false;
|
||||
}
|
||||
final Commande other = (Commande) obj;
|
||||
if (this.noCom != other.noCom) {
|
||||
return false;
|
||||
}
|
||||
if (this.noVendeur != other.noVendeur) {
|
||||
return false;
|
||||
}
|
||||
return Objects.equals(this.dateCom, other.dateCom);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
/*
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package métiers;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author famille Thevenot
|
||||
*/
|
||||
public class Commande {
|
||||
|
||||
}
|
||||
|
@ -1,66 +1,43 @@
|
||||
/*
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package métiers;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import métiers.Commande;
|
||||
import métiers.Instrument;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author famille Thevenot
|
||||
*/
|
||||
public class Entreprise {
|
||||
private String raisonSociale;
|
||||
private ArrayList<Commande> lesCommandes = new ArrayList<>();
|
||||
private ArrayList<Instrument> lesInstruments = new ArrayList<>();
|
||||
|
||||
public Entreprise(String raisonSociale) {
|
||||
this.raisonSociale = raisonSociale;
|
||||
|
||||
Instrument instr1=new Instrument(23,"Piano droit",3, 8300f);
|
||||
Instrument instr2=new Instrument(54,"Violon Alto",5, 105f);
|
||||
Instrument instr3=new Instrument(67,"Guitare Classique",8, 575f);
|
||||
lesInstruments.add(instr3);
|
||||
lesInstruments.add(instr2);
|
||||
lesInstruments.add(instr1);
|
||||
}
|
||||
|
||||
public String getRaisonSociale() {
|
||||
return raisonSociale;
|
||||
}
|
||||
|
||||
public void setRaisonSociale(String raisonSociale) {
|
||||
this.raisonSociale = raisonSociale;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Entreprise{" + "raisonSociale=" + raisonSociale + '}';
|
||||
}
|
||||
|
||||
|
||||
public void ajouterCommande(Commande uneCommande){
|
||||
lesCommandes.add(uneCommande);
|
||||
}
|
||||
|
||||
public void supprimerCommande(Commande uneCommande){
|
||||
//parcours pour supprimer les instruments de la commande
|
||||
|
||||
//suppression de la commande
|
||||
lesCommandes.remove(uneCommande);
|
||||
}
|
||||
|
||||
public Commande rechercherCommande(int noCom){
|
||||
Commande uneCommande = null;
|
||||
for(Commande laCommande : lesCommandes){
|
||||
if(laCommande.getNoCom() == noCom){
|
||||
uneCommande = laCommande;
|
||||
break;
|
||||
}
|
||||
}
|
||||
return uneCommande;
|
||||
}
|
||||
}
|
||||
/*
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package métiers;
|
||||
|
||||
import métiers.Commande;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author famille Thevenot
|
||||
*/
|
||||
public class Entreprise {
|
||||
private String raisonSociale;
|
||||
|
||||
public Entreprise(String raisonSociale) {
|
||||
this.raisonSociale = raisonSociale;
|
||||
}
|
||||
|
||||
public String getRaisonSociale() {
|
||||
return raisonSociale;
|
||||
}
|
||||
|
||||
public void setRaisonSociale(String raisonSociale) {
|
||||
this.raisonSociale = raisonSociale;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Entreprise{" + "raisonSociale=" + raisonSociale + '}';
|
||||
}
|
||||
|
||||
|
||||
public void ajouterCommande(Commande uneCommande){
|
||||
}
|
||||
public void supprimerCommande(Commande uneCommande){
|
||||
}
|
||||
|
||||
public Commande rechercherCommande(int noCom){
|
||||
Commande laCommande=null;
|
||||
return laCommande;
|
||||
}
|
||||
}
|
||||
|
@ -1,134 +0,0 @@
|
||||
/*
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/UnitTests/JUnit4TestClass.java to edit this template
|
||||
*/
|
||||
package métiers;
|
||||
|
||||
import java.util.HashMap;
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* @author famille Thevenot
|
||||
*/
|
||||
public class CommandeTest {
|
||||
|
||||
public CommandeTest() {
|
||||
}
|
||||
|
||||
|
||||
public void setUp() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Test of ajouter method, of class Commande.
|
||||
*/
|
||||
|
||||
public void testAjouter() {
|
||||
Instrument instr1=new Instrument(1,"Piano",10, 8300f);
|
||||
Instrument instr2=new Instrument(2,"Violon",9, 105f);
|
||||
Instrument instr3=new Instrument(3,"piano",8, 105f);
|
||||
Commande laCommande = new Commande(1,1,"12/09/2024");
|
||||
System.out.println("ajouter");
|
||||
//cas 0
|
||||
boolean ajoutRes= laCommande.ajouter(instr1, 2);
|
||||
boolean ajoutAttendu = true;
|
||||
System.out.println("cas0 : cas normal, ajout une ligne de commande");
|
||||
assertEquals("Test0 ajout 2 instr1",ajoutAttendu,ajoutRes);
|
||||
int stockRes=instr1.getQteStock();
|
||||
int stockAttendu=8;
|
||||
assertEquals("Test0 stock",stockAttendu,stockRes);
|
||||
int qteRes=laCommande.getLesLignes().get(instr1);
|
||||
int qteAttendu=2;
|
||||
assertEquals("Test0 quantite",qteRes, qteAttendu);
|
||||
|
||||
//cas 1
|
||||
System.out.println("Cas1 : ajout autre ligne de commande");
|
||||
laCommande.ajouter(instr2, 6);
|
||||
int tailleR=laCommande.getLesLignes().size();
|
||||
int tailleAttendue=2;
|
||||
assertEquals("Test1 taille",tailleAttendue,tailleR);
|
||||
|
||||
//Cas2
|
||||
System.out.println("Cas2 : màj quantité commandée d'une ligne existante");
|
||||
laCommande.ajouter(instr2, 5);
|
||||
stockRes=instr2.getQteStock();
|
||||
stockAttendu=4;
|
||||
assertEquals("test2 stock",stockAttendu,stockRes );
|
||||
|
||||
qteRes=laCommande.getLesLignes().get(instr2);
|
||||
qteAttendu=5;
|
||||
assertEquals("Test2 quantite", qteAttendu,qteRes);
|
||||
|
||||
/*INES*/
|
||||
System.out.println("Cas3 : ajout nouvelle ligne avec quantité > stock");
|
||||
boolean test= laCommande.ajouter(instr3, 12);
|
||||
stockRes=instr3.getQteStock();
|
||||
stockAttendu=8;
|
||||
boolean testResultExpected=false;
|
||||
|
||||
assertEquals("test3 stock",stockAttendu,stockRes );
|
||||
assertEquals("La méthode ajouter retourne false",testResultExpected,test );
|
||||
|
||||
System.out.println("Nombre de ligne dans le dictionnaire: "+laCommande.getLesLignes().size());
|
||||
System.out.println("Résultat de la méthode ajouter: " + test);
|
||||
|
||||
/*MAISSANE*/
|
||||
System.out.println("Cas4 : ajout nouvelle ligne avec quantité 0");
|
||||
System.out.println("Cas4 : ajout nouvelle ligne avec quantité 0");
|
||||
boolean AjouterObtenu=laCommande.ajouter(instr3, 0);
|
||||
boolean AjouterA= false;
|
||||
assertEquals("Test4 ajout 0 instr3",AjouterA,AjouterObtenu);
|
||||
int lignes=laCommande.getLesLignes().size();
|
||||
int nbLigneAttendu = 2;
|
||||
assertEquals("Test4 taille",nbLigneAttendu,lignes);
|
||||
qteRes=laCommande.getLesLignes().get(instr3);
|
||||
qteAttendu=0;
|
||||
assertEquals("Test4 quantite", qteAttendu,qteRes);
|
||||
|
||||
|
||||
/*MORGANN*/
|
||||
System.out.println("Cas5 : mise à 0 quantité commandée d'une ligne existante");
|
||||
laCommande.ajouter(instr2, 0);
|
||||
stockRes=instr2.getQteStock();
|
||||
stockAttendu=9;
|
||||
assertEquals("test5 stock",stockAttendu,stockRes );
|
||||
tailleR=laCommande.getLesLignes().size();
|
||||
tailleAttendue=2;
|
||||
assertEquals("Test1 taille",tailleAttendue,tailleR);
|
||||
/*ILONA*/
|
||||
System.out.println("Cas6 : màj d'une ligne existante avec qté>stock");
|
||||
System.out.println("Cas6 : màj d'une ligne existante avec qté>stock");
|
||||
boolean resultatMethode = laCommande.ajouter(instr1, 12);
|
||||
boolean resultatMethodeAttendu=false;
|
||||
assertEquals("test6 mise à jour",resultatMethodeAttendu,resultatMethode);
|
||||
stockRes=instr1.getQteStock();
|
||||
stockAttendu=2;
|
||||
assertEquals("test6 stock",stockAttendu,stockRes );
|
||||
}
|
||||
|
||||
private void assertEquals(String test1_taille, int tailleAttendue, int tailleR) {
|
||||
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
|
||||
}
|
||||
|
||||
private void assertEquals(String la_méthode_ajouter_retourne_false, boolean testResultExpected, boolean test) {
|
||||
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Test of supprimer method, of class Commande.
|
||||
|
||||
@Test
|
||||
public void testSupprimer() {
|
||||
System.out.println("supprimer");
|
||||
Instrument unInstrument = null;
|
||||
Commande instance = null;
|
||||
boolean expResult = false;
|
||||
boolean result = instance.supprimer(unInstrument);
|
||||
assertEquals("test supprimer",expResult, result);
|
||||
// TODO review the generated test code and remove the default call to fail.
|
||||
fail("The test case is a prototype.");
|
||||
}*/
|
||||
|
||||
}
|
@ -1,27 +0,0 @@
|
||||
<?xml version='1.0' encoding='UTF-8' ?>
|
||||
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
|
||||
<suite name="MusicAndCo">
|
||||
|
||||
<!--
|
||||
see examples at http://testng.org/doc/documentation-main.html#testng-xml
|
||||
|
||||
<suite-files>
|
||||
<suite-file path="./junit-suite.xml" />
|
||||
</suite-files>
|
||||
|
||||
<test name="TimeOut">
|
||||
<classes>
|
||||
<class name="test.timeout.TimeOutTest" />
|
||||
<class name="test.timeout.TimeOutFromXmlTest"/>
|
||||
<class name="test.timeout.TimeOutThreadLocalSampleTest"/>
|
||||
</classes>
|
||||
</test>
|
||||
-->
|
||||
|
||||
<test name="métiers suite">
|
||||
<packages>
|
||||
<package name="métiers"/>
|
||||
</packages>
|
||||
</test>
|
||||
|
||||
</suite>
|
Loading…
x
Reference in New Issue
Block a user