mirror of
https://github.com/YunoHost-Apps/noalyss_ynh.git
synced 2024-09-03 19:46:20 +02:00
3a905a4a87
Update files from sources with last update on noalyss.eu
59 lines
2.5 KiB
Text
59 lines
2.5 KiB
Text
*
|
|
* Copyright (C) 2014 Dany De Bontridder <dany@alchimerys.be>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
-----------------------
|
|
FRANCAIS
|
|
-----------------------
|
|
Afin d'avoir les scénarios pour les rejouer avec test.php.
|
|
|
|
Dans include/config.inc.php, changer
|
|
define ('LOGINPUT',false); par
|
|
define ('LOGINPUT',true);
|
|
|
|
Ensuite, aller dans votre dossier de test et faites une action (une vente, un achat...), vous devez ouvrir le fichier test.php
|
|
ce que vous venez de faire a été sauvé dans le répertoire défini par $_ENV['TMP'], (sous linux il s'agit de /tmp )avec un nom ressemblant à scenario-<nombre>.php
|
|
|
|
Vous devez d'abord copier ce fichier dans ce répertoire-ci
|
|
|
|
Si vous pointez votre browser sur noalyss/html/test.php (après avoir créé le fichier authorized_debug) en cliquant sur le
|
|
lien avec le nom de fichier vous pourrez rejouer l'action. Vous pouvez améliorer la description en changeant l'annotation //@description: <CODE>
|
|
|
|
Vous pouvez aussi utiliser un nom de fichier plus parlant.
|
|
|
|
L'objectif étant de pouvoir tester et de rejouer facilement les actions que vous avez faites.
|
|
|
|
Il est aussi possible de faire vos tests unitaire ici , autrement qu'avec PHPUNIT (voir répertiore php-unit)
|
|
|
|
|
|
-----------------------
|
|
ENGLISH
|
|
-----------------------
|
|
If you want to use scenario in order to use them with test.php
|
|
You must have in include/config.inc.php
|
|
|
|
define ('LOGINPUT',true);
|
|
|
|
you must also create the file authorized_debug (this file is empty)
|
|
|
|
Next step you perform the action you like to test or change , a file into $_ENV['TMP'] has been created, you
|
|
copy this file into tghe noalyss/scenario folder.
|
|
|
|
You point you browser noalyss/html/test.php an you click on the link with the name of the file
|
|
|
|
and you can rerun the file , it works also for ajax.
|
|
|
|
It is useful to test ajax answer , unit test or testing a class
|
|
|