Skip to content
GitLab
Explorer
Connexion
S'inscrire
Navigation principale
Rechercher ou aller à…
Projet
S
stats-facil
Gestion
Activité
Membres
Labels
Programmation
Tickets
Tableaux des tickets
Jalons
Wiki
Code
Requêtes de fusion
Dépôt
Branches
Validations
Étiquettes
Graphe du dépôt
Comparer les révisions
Extraits de code
Compilation
Pipelines
Jobs
Planifications de pipeline
Artéfacts
Déploiement
Releases
Registre de paquets
Registre de conteneur
Registre de modèles
Opération
Environnements
Modules Terraform
Surveillance
Incidents
Analyse
Données d'analyse des chaînes de valeur
Analyse des contributeurs
Données d'analyse CI/CD
Données d'analyse du dépôt
Expériences du modèle
Aide
Aide
Support
Documentation de GitLab
Comparer les forfaits GitLab
Forum de la communauté
Contribuer à GitLab
Donner votre avis
Raccourcis clavier
?
Extraits de code
Groupes
Projets
Afficher davantage de fils d'Ariane
facil
stats-facil
Validations
78e96146
Valider
78e96146
rédigé
11 years ago
par
Thomas Steur
Parcourir les fichiers
Options
Téléchargements
Correctifs
Plain Diff
refs #57 average filter is no longer needed
parent
81c3786b
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
Modifications
2
Masquer les modifications d'espaces
En ligne
Côte à côte
Affichage de
2 fichiers modifiés
plugins/Insights/DataTable/Filter/Average.php
+0
-38
0 ajout, 38 suppressions
plugins/Insights/DataTable/Filter/Average.php
plugins/Insights/tests/FilterAverageTest.php
+0
-77
0 ajout, 77 suppressions
plugins/Insights/tests/FilterAverageTest.php
avec
0 ajout
et
115 suppressions
plugins/Insights/DataTable/Filter/Average.php
supprimé
100644 → 0
+
0
−
38
Voir le fichier @
81c3786b
<?php
/**
* Piwik - Open source web analytics
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace
Piwik\Plugins\Insights\DataTable\Filter
;
use
Piwik\DataTable
;
class
Average
extends
DataTable\BaseFilter
{
private
$divisor
;
public
function
__construct
(
$table
,
$columnToRead
,
$divisor
)
{
$this
->
columnToRead
=
$columnToRead
;
$this
->
divisor
=
$divisor
;
}
public
function
filter
(
$table
)
{
if
(
!
$this
->
divisor
)
{
return
;
}
foreach
(
$table
->
getRows
()
as
$row
)
{
$value
=
$row
->
getColumn
(
$this
->
columnToRead
);
if
(
false
!==
$value
&&
is_numeric
(
$value
))
{
$row
->
setColumn
(
$this
->
columnToRead
,
round
(
$value
/
$this
->
divisor
));
}
}
}
}
\ No newline at end of file
Ce diff est replié.
Cliquez pour l'agrandir.
plugins/Insights/tests/FilterAverageTest.php
supprimé
100644 → 0
+
0
−
77
Voir le fichier @
81c3786b
<?php
/**
* Piwik - Open source web analytics
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace
Piwik\Plugins\Insights\tests
;
use
Piwik\DataTable
;
use
Piwik\DataTable\Row
;
use
Piwik\Plugins\Insights\DataTable\Filter\Average
;
/**
* @group Insights
* @group FilterAverageTest
* @group Unit
* @group Core
*/
class
FilterAverageTest
extends
BaseUnitTest
{
public
function
setUp
()
{
$this
->
table
=
new
DataTable
();
$this
->
table
->
addRowsFromArray
(
array
(
array
(
Row
::
COLUMNS
=>
array
(
'label'
=>
'val1'
,
'growth'
=>
22
)),
array
(
Row
::
COLUMNS
=>
array
(
'label'
=>
'val2'
,
'growth'
=>
14
)),
array
(
Row
::
COLUMNS
=>
array
(
'label'
=>
'val3'
,
'growth'
=>
18
)),
array
(
Row
::
COLUMNS
=>
array
(
'label'
=>
'val4'
,
'growth'
=>
20
)),
array
(
Row
::
COLUMNS
=>
array
(
'label'
=>
'val5'
,
'growth'
=>
25
)),
array
(
Row
::
COLUMNS
=>
array
(
'label'
=>
'val6'
,
'growth'
=>
17
)),
array
(
Row
::
COLUMNS
=>
array
(
'label'
=>
'val7'
,
'growth'
=>
0
)),
array
(
Row
::
COLUMNS
=>
array
(
'label'
=>
'val8'
,
'growth'
=>
4
)),
array
(
Row
::
COLUMNS
=>
array
(
'label'
=>
'val9'
,
'growth'
=>
-
4
)),
array
(
Row
::
COLUMNS
=>
array
(
'label'
=>
'val10'
,
'growth'
=>
null
)),
array
(
Row
::
COLUMNS
=>
array
(
'label'
=>
'val11'
,
'growth'
=>
false
)),
));
}
public
function
testShouldNotChangeAnythingIfAverageIsZeroOrOne
()
{
$rowsBefore
=
$this
->
table
->
getRows
();
$this
->
calculateAverage
(
0
);
$this
->
assertSame
(
$rowsBefore
,
$this
->
table
->
getRows
());
$this
->
calculateAverage
(
1
);
$this
->
assertSame
(
$rowsBefore
,
$this
->
table
->
getRows
());
}
public
function
testShouldDivideNumericValuesByDivisorAndRound
()
{
$this
->
calculateAverage
(
4
);
$this
->
assertColumnValues
(
array
(
array
(
'label'
=>
'val1'
,
'growth'
=>
6
),
array
(
'label'
=>
'val2'
,
'growth'
=>
4
),
array
(
'label'
=>
'val3'
,
'growth'
=>
5
),
array
(
'label'
=>
'val4'
,
'growth'
=>
5
),
array
(
'label'
=>
'val5'
,
'growth'
=>
6
),
array
(
'label'
=>
'val6'
,
'growth'
=>
4
),
array
(
'label'
=>
'val7'
,
'growth'
=>
0
),
array
(
'label'
=>
'val8'
,
'growth'
=>
1
),
array
(
'label'
=>
'val9'
,
'growth'
=>
-
1
),
array
(
'label'
=>
'val10'
,
'growth'
=>
null
),
array
(
'label'
=>
'val11'
,
'growth'
=>
false
),
));
}
private
function
calculateAverage
(
$divisor
)
{
$filter
=
new
Average
(
$this
->
table
,
'growth'
,
$divisor
);
$filter
->
filter
(
$this
->
table
);
}
}
Ce diff est replié.
Cliquez pour l'agrandir.
Aperçu
0%
Chargement en cours
Veuillez réessayer
ou
joindre un nouveau fichier
.
Annuler
You are about to add
0
people
to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Enregistrer le commentaire
Annuler
Veuillez vous
inscrire
ou vous
se connecter
pour commenter