未验证 提交 3b090571 编写于 作者: O openharmony_ci 提交者: Gitee

!8124 【杂散】【主题】【壁纸】getColors接口用例优化

Merge pull request !8124 from 张育帅/master
...@@ -62,6 +62,7 @@ export default function wallpaperJSUnit() { ...@@ -62,6 +62,7 @@ export default function wallpaperJSUnit() {
*/ */
it('testGetColorsCallbackSystem101', 0, async function (done) { it('testGetColorsCallbackSystem101', 0, async function (done) {
console.info('--------------testGetColorsCallbackSystem101 start-----------------'); console.info('--------------testGetColorsCallbackSystem101 start-----------------');
await wallpaper.setWallpaper(imageSourceLockscreen, wallpaper.WallpaperType.WALLPAPER_SYSTEM);
wallpaper.getColors(WALLPAPER_SYSTEM, (err, RgbaColors) => { wallpaper.getColors(WALLPAPER_SYSTEM, (err, RgbaColors) => {
try { try {
if (err) { if (err) {
...@@ -91,6 +92,7 @@ export default function wallpaperJSUnit() { ...@@ -91,6 +92,7 @@ export default function wallpaperJSUnit() {
*/ */
it('testGetColorsPromiseSystem101', 0, async function (done) { it('testGetColorsPromiseSystem101', 0, async function (done) {
console.info('--------------testGetColorsPromiseSystem101 start-----------------'); console.info('--------------testGetColorsPromiseSystem101 start-----------------');
await wallpaper.setWallpaper(imageSourceLockscreen, wallpaper.WallpaperType.WALLPAPER_SYSTEM);
await wallpaper.getColors(WALLPAPER_SYSTEM).then((RgbaColors) => { await wallpaper.getColors(WALLPAPER_SYSTEM).then((RgbaColors) => {
console.info('====>testGetColorsPromiseSystem101 succesful RgbaColors: ' + JSON.stringify(RgbaColors)); console.info('====>testGetColorsPromiseSystem101 succesful RgbaColors: ' + JSON.stringify(RgbaColors));
expect(Number.isInteger(RgbaColors[0].red)).assertTrue(); expect(Number.isInteger(RgbaColors[0].red)).assertTrue();
...@@ -114,6 +116,7 @@ export default function wallpaperJSUnit() { ...@@ -114,6 +116,7 @@ export default function wallpaperJSUnit() {
*/ */
it('testGetColorsCallbackLock102', 0, async function (done) { it('testGetColorsCallbackLock102', 0, async function (done) {
console.info('--------------testGetColorsCallbackLock102 start-----------------'); console.info('--------------testGetColorsCallbackLock102 start-----------------');
await wallpaper.setWallpaper(imageSourceLockscreen, wallpaper.WallpaperType.WALLPAPER_LOCKSCREEN);
wallpaper.getColors(WALLPAPER_LOCKSCREEN, (err, RgbaColors) => { wallpaper.getColors(WALLPAPER_LOCKSCREEN, (err, RgbaColors) => {
try { try {
if (err) { if (err) {
...@@ -143,6 +146,7 @@ export default function wallpaperJSUnit() { ...@@ -143,6 +146,7 @@ export default function wallpaperJSUnit() {
*/ */
it('testGetColorsPromiseLock102', 0, async function (done) { it('testGetColorsPromiseLock102', 0, async function (done) {
console.info('--------------testGetColorsPromiseLock102 start-----------------'); console.info('--------------testGetColorsPromiseLock102 start-----------------');
await wallpaper.setWallpaper(imageSourceLockscreen, wallpaper.WallpaperType.WALLPAPER_LOCKSCREEN);
await wallpaper.getColors(WALLPAPER_LOCKSCREEN).then((RgbaColors) => { await wallpaper.getColors(WALLPAPER_LOCKSCREEN).then((RgbaColors) => {
console.info('====>testGetColorsPromiseLock102 succesful RgbaColors: ' + JSON.stringify(RgbaColors)); console.info('====>testGetColorsPromiseLock102 succesful RgbaColors: ' + JSON.stringify(RgbaColors));
expect(Number.isInteger(RgbaColors[0].red)).assertTrue(); expect(Number.isInteger(RgbaColors[0].red)).assertTrue();
...@@ -682,8 +686,8 @@ export default function wallpaperJSUnit() { ...@@ -682,8 +686,8 @@ export default function wallpaperJSUnit() {
console.info('====>testOffCallback101 on callbackTime: ' + callbackTimes); console.info('====>testOffCallback101 on callbackTime: ' + callbackTimes);
expect(callbackTimes == 1).assertTrue(); expect(callbackTimes == 1).assertTrue();
wallpaper.off('colorChange'); wallpaper.off('colorChange');
await wallpaper.reset(wallpaper.WallpaperType.WALLPAPER_SYSTEM) await wallpaper.reset(wallpaper.WallpaperType.WALLPAPER_LOCKSCREEN)
await wallpaper.setWallpaper(wallpaperPath, wallpaper.WallpaperType.WALLPAPER_SYSTEM) await wallpaper.setWallpaper(wallpaperPath, wallpaper.WallpaperType.WALLPAPER_LOCKSCREEN)
console.info('====>testOffCallback101 setWallpaper successful'); console.info('====>testOffCallback101 setWallpaper successful');
console.info('--------------testOffCallback101 end-----------------'); console.info('--------------testOffCallback101 end-----------------');
done(); done();
...@@ -733,6 +737,7 @@ export default function wallpaperJSUnit() { ...@@ -733,6 +737,7 @@ export default function wallpaperJSUnit() {
*/ */
it('testGetFilePromise101', 0, async function (done) { it('testGetFilePromise101', 0, async function (done) {
console.info('--------------testGetFilePromise101 start-----------------'); console.info('--------------testGetFilePromise101 start-----------------');
await wallpaper.setWallpaper(imageSourceLockscreen, wallpaper.WallpaperType.WALLPAPER_LOCKSCREEN);
await wallpaper.getFile(WALLPAPER_LOCKSCREEN).then((data) => { await wallpaper.getFile(WALLPAPER_LOCKSCREEN).then((data) => {
console.info('====>testGetFilePromise101 successful data : ' + JSON.stringify(data)); console.info('====>testGetFilePromise101 successful data : ' + JSON.stringify(data));
expect(Number.isInteger(data)).assertTrue(); expect(Number.isInteger(data)).assertTrue();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册