2014-12-11 19:57:41 +05:30
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "UTF-8" >
< title > Dashboard for /home/travis/build/thephpleague/oauth2-server/src/Exception< / title >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< link href = "../css/bootstrap.min.css" rel = "stylesheet" >
< link href = "../css/nv.d3.css" rel = "stylesheet" >
< link href = "../css/style.css" rel = "stylesheet" >
<!-- [if lt IE 9]>
< script src = "../js/html5shiv.min.js" > < / script >
< script src = "../js/respond.min.js" > < / script >
<![endif]-->
< / head >
< body >
< header >
< div class = "container" >
< div class = "row" >
< div class = "col-md-12" >
< ol class = "breadcrumb" >
< li > < a href = "../index.html" > /home/travis/build/thephpleague/oauth2-server/src< / a > < / li >
< li > < a href = "index.html" > Exception< / a > < / li >
< li class = "active" > (Dashboard)< / li >
< / ol >
< / div >
< / div >
< / div >
< / header >
< div class = "container" >
< div class = "row" >
< div class = "col-md-12" >
< h2 > Classes< / h2 >
< / div >
< / div >
< div class = "row" >
< div class = "col-md-6" >
< h3 > Coverage Distribution< / h3 >
< div id = "classCoverageDistribution" style = "height: 300px;" >
< svg > < / svg >
< / div >
< / div >
< div class = "col-md-6" >
< h3 > Complexity< / h3 >
< div id = "classComplexity" style = "height: 300px;" >
< svg > < / svg >
< / div >
< / div >
< / div >
< div class = "row" >
< div class = "col-md-6" >
< h3 > Insufficient Coverage< / h3 >
< div class = "scrollbox" >
< table class = "table" >
< thead >
< tr >
< th > Class< / th >
< th class = "text-right" > Coverage< / th >
< / tr >
< / thead >
< tbody >
< / tbody >
< / table >
< / div >
< / div >
< div class = "col-md-6" >
< h3 > Project Risks< / h3 >
< div class = "scrollbox" >
< table class = "table" >
< thead >
< tr >
< th > Class< / th >
< th class = "text-right" > < abbr title = "Change Risk Anti-Patterns (CRAP) Index" > CRAP< / abbr > < / th >
< / tr >
< / thead >
< tbody >
< / tbody >
< / table >
< / div >
< / div >
< / div >
< div class = "row" >
< div class = "col-md-12" >
< h2 > Methods< / h2 >
< / div >
< / div >
< div class = "row" >
< div class = "col-md-6" >
< h3 > Coverage Distribution< / h3 >
< div id = "methodCoverageDistribution" style = "height: 300px;" >
< svg > < / svg >
< / div >
< / div >
< div class = "col-md-6" >
< h3 > Complexity< / h3 >
< div id = "methodComplexity" style = "height: 300px;" >
< svg > < / svg >
< / div >
< / div >
< / div >
< div class = "row" >
< div class = "col-md-6" >
< h3 > Insufficient Coverage< / h3 >
< div class = "scrollbox" >
< table class = "table" >
< thead >
< tr >
< th > Method< / th >
< th class = "text-right" > Coverage< / th >
< / tr >
< / thead >
< tbody >
< / tbody >
< / table >
< / div >
< / div >
< div class = "col-md-6" >
< h3 > Project Risks< / h3 >
< div class = "scrollbox" >
< table class = "table" >
< thead >
< tr >
< th > Method< / th >
< th class = "text-right" > < abbr title = "Change Risk Anti-Patterns (CRAP) Index" > CRAP< / abbr > < / th >
< / tr >
< / thead >
< tbody >
< / tbody >
< / table >
< / div >
< / div >
< / div >
< footer >
< hr / >
< p >
2015-01-01 18:24:53 +05:30
< small > Generated by < a href = "http://github.com/sebastianbergmann/php-code-coverage" target = "_top" > PHP_CodeCoverage 2.0.14< / a > using < a href = "http://php.net/" target = "_top" > PHP 5.6.3< / a > and < a href = "http://phpunit.de/" > PHPUnit 4.3.5< / a > at Thu Jan 1 12:54:42 UTC 2015.< / small >
2014-12-11 19:57:41 +05:30
< / p >
< / footer >
< / div >
< script src = "../js/jquery.min.js" type = "text/javascript" > < / script >
< script src = "../js/bootstrap.min.js" type = "text/javascript" > < / script >
< script src = "../js/holder.js" type = "text/javascript" > < / script >
< script src = "../js/d3.min.js" type = "text/javascript" > < / script >
< script src = "../js/nv.d3.min.js" type = "text/javascript" > < / script >
< script type = "text/javascript" >
$(document).ready(function() {
nv.addGraph(function() {
var chart = nv.models.multiBarChart();
chart.tooltips(false)
.showControls(false)
.showLegend(false)
.reduceXTicks(false)
.staggerLabels(true)
.yAxis.tickFormat(d3.format('d'));
d3.select('#classCoverageDistribution svg')
2015-01-01 18:24:53 +05:30
.datum(getCoverageDistributionData([0,0,0,0,0,0,0,0,0,0,0,12], "Class Coverage"))
2014-12-11 19:57:41 +05:30
.transition().duration(500).call(chart);
nv.utils.windowResize(chart.update);
return chart;
});
nv.addGraph(function() {
var chart = nv.models.multiBarChart();
chart.tooltips(false)
.showControls(false)
.showLegend(false)
.reduceXTicks(false)
.staggerLabels(true)
.yAxis.tickFormat(d3.format('d'));
d3.select('#methodCoverageDistribution svg')
2015-01-01 18:24:53 +05:30
.datum(getCoverageDistributionData([0,0,0,0,0,0,0,0,0,0,0,15], "Method Coverage"))
2014-12-11 19:57:41 +05:30
.transition().duration(500).call(chart);
nv.utils.windowResize(chart.update);
return chart;
});
function getCoverageDistributionData(data, label) {
var labels = [
'0%',
'0-10%',
'10-20%',
'20-30%',
'30-40%',
'40-50%',
'50-60%',
'60-70%',
'70-80%',
'80-90%',
'90-100%',
'100%'
];
var values = [];
$.each(labels, function(key) {
values.push({x: labels[key], y: data[key]});
});
return [
{
key: label,
values: values,
color: "#4572A7"
}
];
}
nv.addGraph(function() {
var chart = nv.models.scatterChart()
.showDistX(true)
.showDistY(true)
.showLegend(false)
.forceX([0, 100]);
chart.scatter.onlyCircles(false);
chart.tooltipContent(function(key, y, e, graph) {
return '< p > ' + graph.point.class + '< / p > ';
});
chart.xAxis.axisLabel('Code Coverage (in percent)');
chart.yAxis.axisLabel('Cyclomatic Complexity');
d3.select('#classComplexity svg')
2015-01-01 18:24:53 +05:30
.datum(getComplexityData([[100,1,"< a href = \"AccessDeniedException.php.html#17\" > AccessDeniedException< \/a>"],[100,1,"< a href = \"InvalidClientException.php.html#17\" > InvalidClientException< \/a>"],[100,1,"< a href = \"InvalidCredentialsException.php.html#17\" > InvalidCredentialsException< \/a>"],[100,1,"< a href = \"InvalidGrantException.php.html#17\" > InvalidGrantException< \/a>"],[100,1,"< a href = \"InvalidRefreshException.php.html#17\" > InvalidRefreshException< \/a>"],[100,1,"< a href = \"InvalidRequestException.php.html#17\" > InvalidRequestException< \/a>"],[100,1,"< a href = \"InvalidScopeException.php.html#17\" > InvalidScopeException< \/a>"],[100,15,"< a href = \"OAuthException.php.html#20\" > OAuthException< \/a>"],[100,2,"< a href = \"ServerErrorException.php.html#17\" > ServerErrorException< \/a>"],[100,1,"< a href = \"UnauthorizedClientException.php.html#17\" > UnauthorizedClientException< \/a>"],[100,1,"< a href = \"UnsupportedGrantTypeException.php.html#17\" > UnsupportedGrantTypeException< \/a>"],[100,1,"< a href = \"UnsupportedResponseTypeException.php.html#17\" > UnsupportedResponseTypeException< \/a>"]], 'Class Complexity'))
2014-12-11 19:57:41 +05:30
.transition()
.duration(500)
.call(chart);
nv.utils.windowResize(chart.update);
return chart;
});
nv.addGraph(function() {
var chart = nv.models.scatterChart()
.showDistX(true)
.showDistY(true)
.showLegend(false)
.forceX([0, 100]);
chart.scatter.onlyCircles(false);
chart.tooltipContent(function(key, y, e, graph) {
return '< p > ' + graph.point.class + '< / p > ';
});
chart.xAxis.axisLabel('Code Coverage (in percent)');
chart.yAxis.axisLabel('Method Complexity');
d3.select('#methodComplexity svg')
2015-01-01 18:24:53 +05:30
.datum(getComplexityData([[100,1,"< a href = \"AccessDeniedException.php.html#32\" > AccessDeniedException::__construct< \/a>"],[100,1,"< a href = \"InvalidClientException.php.html#32\" > InvalidClientException::__construct< \/a>"],[100,1,"< a href = \"InvalidCredentialsException.php.html#32\" > InvalidCredentialsException::__construct< \/a>"],[100,1,"< a href = \"InvalidGrantException.php.html#33\" > InvalidGrantException::__construct< \/a>"],[100,1,"< a href = \"InvalidRefreshException.php.html#32\" > InvalidRefreshException::__construct< \/a>"],[100,1,"< a href = \"InvalidRequestException.php.html#33\" > InvalidRequestException::__construct< \/a>"],[100,1,"< a href = \"InvalidScopeException.php.html#33\" > InvalidScopeException::__construct< \/a>"],[100,1,"< a href = \"OAuthException.php.html#44\" > OAuthException::__construct< \/a>"],[100,2,"< a href = \"OAuthException.php.html#54\" > OAuthException::shouldRedirect< \/a>"],[100,1,"< a href = \"OAuthException.php.html#64\" > OAuthException::getRedirectUri< \/a>"],[100,11,"< a href = \"OAuthException.php.html#80\" > OAuthException::getHttpHeaders< \/a>"],[100,2,"< a href = \"ServerErrorException.php.html#32\" > ServerErrorException::__construct< \/a>"],[100,1,"< a href = \"UnauthorizedClientException.php.html#32\" > UnauthorizedClientException::__construct< \/a>"],[100,1,"< a href = \"UnsupportedGrantTypeException.php.html#33\" > UnsupportedGrantTypeException::__construct< \/a>"],[100,1,"< a href = \"UnsupportedResponseTypeException.php.html#32\" > UnsupportedResponseTypeException::__construct< \/a>"]], 'Method Complexity'))
2014-12-11 19:57:41 +05:30
.transition()
.duration(500)
.call(chart);
nv.utils.windowResize(chart.update);
return chart;
});
function getComplexityData(data, label) {
var values = [];
$.each(data, function(key) {
var value = Math.round(data[key][0]*100) / 100;
values.push({
x: value,
y: data[key][1],
class: data[key][2],
size: 0.05,
shape: 'diamond'
});
});
return [
{
key: label,
values: values,
color: "#4572A7"
}
];
}
});
< / script >
< / body >
< / html >