fix: 微信登录补充保存username和role
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Agent
2026-04-04 07:35:21 +00:00
parent 756444ef2b
commit d12eea7693
10597 changed files with 817047 additions and 3 deletions

78
node_modules/@jimp/plugin-circle/test/circle.test.js generated vendored Normal file
View File

@@ -0,0 +1,78 @@
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);
});
});

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 B