This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
2021-04-02 02:24:13 +03:00

79 lines
3.3 KiB
JavaScript

import { Jimp, mkJGD, getTestDir } from '@jimp/test-utils';
import configure from '@jimp/custom';
import circle from '../src';
const jimp = configure({ plugins: [circle] }, Jimp);
describe('Circle', () => {
it('makes a circle based on image height and width', async () => {
const expectedImg = await Jimp.read(
getTestDir(__dirname) + '/images/circled.png'
);
const imgSrc = await jimp.read(
mkJGD(
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦'
)
);
imgSrc.circle().bitmap.data.should.be.deepEqual(expectedImg.bitmap.data);
});
it('makes a circle using provided radius', async () => {
const expectedImg = await Jimp.read(
getTestDir(__dirname) + '/images/radius-3-circle.png'
);
const imgSrc = await jimp.read(
mkJGD(
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦'
)
);
imgSrc
.circle({ radius: 3 })
.bitmap.data.should.be.deepEqual(expectedImg.bitmap.data);
});
it('should ', async () => {
const expectedImg = await Jimp.read(
getTestDir(__dirname) + '/images/x-y-circle.png'
);
const imgSrc = await jimp.read(
mkJGD(
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦',
'▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦▦'
)
);
imgSrc
.circle({ radius: 5, x: 5, y: 5 })
.bitmap.data.should.be.deepEqual(expectedImg.bitmap.data);
});
});