2014-11-04 22:53:26 +03:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>Mocha Tests</title>
|
|
|
|
<link rel="stylesheet" href="lib/mocha.css" />
|
2015-10-19 01:25:03 +03:00
|
|
|
<script src="../../node_modules/bluebird/js/browser/bluebird.js"></script>
|
2014-11-04 22:53:26 +03:00
|
|
|
<script src="../../dist/html2canvas.js"></script>
|
|
|
|
<script src="../assets/jquery-1.6.2.js"></script>
|
|
|
|
<script src="lib/expect.js"></script>
|
|
|
|
<script src="lib/mocha.js"></script>
|
|
|
|
<style>
|
|
|
|
#block {
|
|
|
|
width: 200px;
|
|
|
|
height: 200px;
|
|
|
|
}
|
|
|
|
#green-block {
|
|
|
|
width: 200px;
|
|
|
|
height: 200px;
|
|
|
|
background: green;
|
|
|
|
}
|
2015-01-10 21:53:06 +03:00
|
|
|
#background-block {
|
|
|
|
width: 200px;
|
|
|
|
height: 200px;
|
|
|
|
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNgaGD4DwAChAGAJVtEDQAAAABJRU5ErkJggg==) red;
|
|
|
|
}
|
|
|
|
#gradient-block {
|
|
|
|
width: 200px;
|
|
|
|
height: 200px;
|
|
|
|
background-image: -webkit-linear-gradient(top, #008000, #008000);
|
2015-01-18 15:31:53 +03:00
|
|
|
background-image: -moz-linear-gradient(to bottom, #008000, #008000);
|
2015-01-10 21:53:06 +03:00
|
|
|
background-image: linear-gradient(to bottom, #008000, #008000);
|
|
|
|
}
|
2014-11-04 22:53:26 +03:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="mocha"></div>
|
|
|
|
<script>mocha.setup('bdd')</script>
|
|
|
|
<div id="block"></div>
|
|
|
|
<div id="green-block"></div>
|
2015-01-10 21:53:06 +03:00
|
|
|
<div id="background-block"></div>
|
|
|
|
<div id="gradient-block"></div>
|
2014-11-04 22:53:26 +03:00
|
|
|
<script>
|
|
|
|
describe("options.background", function() {
|
|
|
|
it("with hexcolor", function(done) {
|
|
|
|
html2canvas(document.querySelector("#block"), {background: '#008000'}).then(function(canvas) {
|
|
|
|
expect(canvas.width).to.equal(200);
|
|
|
|
expect(canvas.height).to.equal(200);
|
|
|
|
validCanvasPixels(canvas);
|
|
|
|
done();
|
|
|
|
}).catch(function(error) {
|
|
|
|
done(error);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it("with named color", function(done) {
|
|
|
|
html2canvas(document.querySelector("#block"), {background: 'green'}).then(function(canvas) {
|
|
|
|
expect(canvas.width).to.equal(200);
|
|
|
|
expect(canvas.height).to.equal(200);
|
|
|
|
validCanvasPixels(canvas);
|
|
|
|
done();
|
|
|
|
}).catch(function(error) {
|
|
|
|
done(error);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it("with element background", function(done) {
|
|
|
|
html2canvas(document.querySelector("#green-block"), {background: 'red'}).then(function(canvas) {
|
|
|
|
expect(canvas.width).to.equal(200);
|
|
|
|
expect(canvas.height).to.equal(200);
|
|
|
|
validCanvasPixels(canvas);
|
|
|
|
done();
|
|
|
|
}).catch(function(error) {
|
|
|
|
done(error);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2015-01-10 21:53:06 +03:00
|
|
|
describe('element background', function() {
|
|
|
|
it('with background-color', function(done) {
|
|
|
|
html2canvas(document.querySelector("#green-block")).then(function(canvas) {
|
|
|
|
expect(canvas.width).to.equal(200);
|
|
|
|
expect(canvas.height).to.equal(200);
|
|
|
|
validCanvasPixels(canvas);
|
|
|
|
done();
|
|
|
|
}).catch(function(error) {
|
|
|
|
done(error);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('with background-image', function(done) {
|
|
|
|
html2canvas(document.querySelector("#background-block")).then(function(canvas) {
|
|
|
|
expect(canvas.width).to.equal(200);
|
|
|
|
expect(canvas.height).to.equal(200);
|
|
|
|
validCanvasPixels(canvas);
|
|
|
|
done();
|
|
|
|
}).catch(function(error) {
|
|
|
|
done(error);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('with gradient background-image', function(done) {
|
|
|
|
html2canvas(document.querySelector("#gradient-block")).then(function(canvas) {
|
|
|
|
expect(canvas.width).to.equal(200);
|
|
|
|
expect(canvas.height).to.equal(200);
|
|
|
|
validCanvasPixels(canvas);
|
|
|
|
done();
|
|
|
|
}).catch(function(error) {
|
|
|
|
done(error);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-11-04 22:53:26 +03:00
|
|
|
function validCanvasPixels(canvas) {
|
|
|
|
var ctx = canvas.getContext("2d");
|
|
|
|
var data = ctx.getImageData(0, 0, canvas.width, canvas.height).data;
|
|
|
|
for (var i = 0, len = data.length; i < len; i+=4) {
|
|
|
|
if (data[i] !== 0 || data[i+1] !== 128 || data[i+2] !== 0 || data[i+3] !== 255) {
|
|
|
|
expect().fail("Invalid canvas data");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mocha.checkLeaks();
|
|
|
|
mocha.globals(['jQuery']);
|
|
|
|
if (window.mochaPhantomJS) {
|
|
|
|
mochaPhantomJS.run();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mocha.run();
|
|
|
|
}
|
2015-01-18 15:31:53 +03:00
|
|
|
mocha.suite.afterAll(function() {
|
|
|
|
document.body.setAttribute('data-complete', 'true');
|
|
|
|
});
|
2014-11-04 22:53:26 +03:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|