diff options
| author | Marak <[email protected]> | 2018-09-24 11:38:25 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-09-24 11:38:25 -0400 |
| commit | 948d0dac5aae515739e3b5fa5b6a64f69aebaa00 (patch) | |
| tree | 8824c6e7b2f60880f99fd2a5eb0b1e62f09a55bb /test | |
| parent | fb1f21e448f74408fa9133c5e4b26e23dc91cdd3 (diff) | |
| parent | a3a4f62f8d1185c9b6113d057bbb2e47f9b89913 (diff) | |
| download | faker-948d0dac5aae515739e3b5fa5b6a64f69aebaa00.tar.xz faker-948d0dac5aae515739e3b5fa5b6a64f69aebaa00.zip | |
Merge pull request #682 from yuezk/master
Add background color to `image.dataUri`
Diffstat (limited to 'test')
| -rw-r--r-- | test/image.unit.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/image.unit.js b/test/image.unit.js index 2839d91a..02e4c42b 100644 --- a/test/image.unit.js +++ b/test/image.unit.js @@ -116,7 +116,11 @@ describe("image.js", function () { describe("dataUri", function () { it("returns a blank data", function () { var dataUri = faker.image.dataUri(200,300); - assert.equal(dataUri, 'data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20baseProfile%3D%22full%22%20width%3D%22200%22%20height%3D%22300%22%3E%20%3Crect%20width%3D%22100%25%22%20height%3D%22100%25%22%20fill%3D%22grey%22%2F%3E%20%20%3Ctext%20x%3D%220%22%20y%3D%2220%22%20font-size%3D%2220%22%20text-anchor%3D%22start%22%20fill%3D%22white%22%3E200x300%3C%2Ftext%3E%20%3C%2Fsvg%3E'); + assert.equal(dataUri, 'data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20baseProfile%3D%22full%22%20width%3D%22200%22%20height%3D%22300%22%3E%3Crect%20width%3D%22100%25%22%20height%3D%22100%25%22%20fill%3D%22grey%22%2F%3E%3Ctext%20x%3D%22100%22%20y%3D%22150%22%20font-size%3D%2220%22%20alignment-baseline%3D%22middle%22%20text-anchor%3D%22middle%22%20fill%3D%22white%22%3E200x300%3C%2Ftext%3E%3C%2Fsvg%3E'); + }); + it("returns a customed background color data URI", function () { + var dataUri = faker.image.dataUri(200, 300, 'red'); + assert.equal(dataUri, 'data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20baseProfile%3D%22full%22%20width%3D%22200%22%20height%3D%22300%22%3E%3Crect%20width%3D%22100%25%22%20height%3D%22100%25%22%20fill%3D%22red%22%2F%3E%3Ctext%20x%3D%22100%22%20y%3D%22150%22%20font-size%3D%2220%22%20alignment-baseline%3D%22middle%22%20text-anchor%3D%22middle%22%20fill%3D%22white%22%3E200x300%3C%2Ftext%3E%3C%2Fsvg%3E'); }); }); }); |
