Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
1c1062e2
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
1 年多 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
1c1062e2
编写于
9月 16, 2021
作者:
O
openharmony_ci
提交者:
Gitee
9月 16, 2021
浏览文件
操作
浏览文件
下载
差异文件
!619 media audio js test update
Merge pull request !619 from XUXIAOBO/xxb-wzy-master-patch-53150
上级
9b3c6ef8
2b3a8d8c
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
794 addition
and
516 deletion
+794
-516
multimedia/audio/audio_js_standard/audioPlayer/src/main/js/default/test/List.test.js
...tandard/audioPlayer/src/main/js/default/test/List.test.js
+2
-1
multimedia/audio/audio_js_standard/audioPlayer/src/main/js/default/test/PlayerLocalTestAudioFUNC.test.js
...src/main/js/default/test/PlayerLocalTestAudioFUNC.test.js
+93
-287
multimedia/audio/audio_js_standard/audioPlayer/src/main/js/default/test/PlayerLocalTestAudioFormat.test.js
...c/main/js/default/test/PlayerLocalTestAudioFormat.test.js
+595
-0
multimedia/audio/audio_js_standard/audioPlayer_API/src/main/js/default/test/PlayerLocalTestAudioAPI.test.js
.../src/main/js/default/test/PlayerLocalTestAudioAPI.test.js
+104
-228
未找到文件。
multimedia/audio/audio_js_standard/audioPlayer/src/main/js/default/test/List.test.js
浏览文件 @
1c1062e2
...
...
@@ -14,3 +14,4 @@
*/
require
(
'
./PlayerLocalTestAudioFUNC.test.js
'
)
require
(
'
./PlayerLocalTestAudioFormat.test.js
'
)
\ No newline at end of file
multimedia/audio/audio_js_standard/audioPlayer/src/main/js/default/test/PlayerLocalTestAudioFUNC.test.js
浏览文件 @
1c1062e2
...
...
@@ -19,9 +19,9 @@ import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from '
describe
(
'
PlayerLocalTestAudioFUNC
'
,
function
()
{
let
audioPlayer
=
media
.
createAudioPlayer
();
let
isTimeOut
=
false
;
const
AUDIO_SOURCE
=
"
file://data/media/audio/Homey.mp3
"
;
const
AUDIO_SOURCE
=
'
file://data/media/audio/01.mp3
'
;
const
PLAY_TIME
=
3000
;
const
DURATION_TIME
=
89239
;
const
DURATION_TIME
=
99432
;
const
SEEK_TIME
=
5000
;
const
DELTA_TIME
=
1000
;
const
END_STATE
=
0
;
...
...
@@ -38,24 +38,24 @@ describe('PlayerLocalTestAudioFUNC', function () {
const
LOOP_STATE
=
11
;
const
SECOND_INDEX
=
1
;
const
RAND_NUM
=
5
;
const
TIME_OUT
=
35
000
;
const
TIME_OUT
=
40
000
;
const
MAX_VOLUME
=
1
;
beforeAll
(
function
()
{
console
.
info
(
"
beforeAll case
"
);
console
.
info
(
'
beforeAll case
'
);
})
beforeEach
(
function
()
{
isTimeOut
=
false
;
console
.
info
(
"
beforeEach case
"
);
console
.
info
(
'
beforeEach case
'
);
})
afterEach
(
function
()
{
console
.
info
(
"
afterEach case
"
);
console
.
info
(
'
afterEach case
'
);
})
afterAll
(
function
()
{
console
.
info
(
"
afterAll case
"
);
console
.
info
(
'
afterAll case
'
);
})
function
sleep
(
time
)
{
...
...
@@ -63,7 +63,15 @@ describe('PlayerLocalTestAudioFUNC', function () {
}
function
initAudioPlayer
()
{
if
(
typeof
(
audioPlayer
)
!=
'
undefined
'
)
{
audioPlayer
.
release
();
audioPlayer
=
undefined
;
}
audioPlayer
=
media
.
createAudioPlayer
();
if
(
typeof
(
audioPlayer
)
==
'
undefined
'
)
{
console
.
info
(
'
case create player is faild
'
);
expect
().
assertFail
();
}
}
function
nextStep
(
mySteps
)
{
...
...
@@ -104,6 +112,7 @@ describe('PlayerLocalTestAudioFUNC', function () {
console
.
info
(
`case to release`
);
mySteps
.
shift
();
audioPlayer
.
release
();
audioPlayer
=
undefined
;
break
;
case
LOOP_STATE
:
audioPlayer
.
loop
=
mySteps
[
SECOND_INDEX
];
...
...
@@ -116,8 +125,7 @@ describe('PlayerLocalTestAudioFUNC', function () {
}
}
function
setCallback
(
mySteps
)
{
console
.
info
(
`case setCallback`
);
function
setSrcCallback
(
mySteps
)
{
audioPlayer
.
on
(
'
dataLoad
'
,
()
=>
{
mySteps
.
shift
();
console
.
info
(
`case dataLoad called`
);
...
...
@@ -126,7 +134,9 @@ describe('PlayerLocalTestAudioFUNC', function () {
expect
(
audioPlayer
.
state
).
assertEqual
(
'
paused
'
);
nextStep
(
mySteps
);
});
}
function
setPlayCallback
(
mySteps
)
{
audioPlayer
.
on
(
'
play
'
,
()
=>
{
mySteps
.
shift
();
console
.
info
(
`case play called`
);
...
...
@@ -140,7 +150,9 @@ describe('PlayerLocalTestAudioFUNC', function () {
expect
(
audioPlayer
.
state
).
assertEqual
(
'
playing
'
);
nextStep
(
mySteps
);
});
}
function
setPauseCallback
(
mySteps
)
{
audioPlayer
.
on
(
'
pause
'
,
()
=>
{
mySteps
.
shift
();
console
.
info
(
`case pause called`
);
...
...
@@ -149,14 +161,18 @@ describe('PlayerLocalTestAudioFUNC', function () {
expect
(
audioPlayer
.
state
).
assertEqual
(
'
paused
'
);
nextStep
(
mySteps
);
});
}
function
setResetCallback
(
mySteps
)
{
audioPlayer
.
on
(
'
reset
'
,
()
=>
{
mySteps
.
shift
();
console
.
info
(
`case reset called`
);
expect
(
audioPlayer
.
state
).
assertEqual
(
'
idle
'
);
nextStep
(
mySteps
);
});
}
function
setStopCallback
(
mySteps
)
{
audioPlayer
.
on
(
'
stop
'
,
()
=>
{
if
(
mySteps
[
0
]
==
RESET_STATE
)
{
console
.
info
(
`case reset stop called`
);
...
...
@@ -169,9 +185,11 @@ describe('PlayerLocalTestAudioFUNC', function () {
expect
(
audioPlayer
.
state
).
assertEqual
(
'
stopped
'
);
nextStep
(
mySteps
);
});
}
function
setSeekCallback
(
mySteps
)
{
audioPlayer
.
on
(
'
timeUpdate
'
,
(
seekDoneTime
)
=>
{
if
(
typeof
(
seekDoneTime
)
==
"
undefined
"
)
{
if
(
typeof
(
seekDoneTime
)
==
'
undefined
'
)
{
console
.
info
(
`case seek filed,errcode is
${
seekDoneTime
}
`
);
return
;
}
...
...
@@ -188,21 +206,25 @@ describe('PlayerLocalTestAudioFUNC', function () {
console
.
info
(
'
case loop is true
'
);
sleep
(
PLAY_STATE
);
}
if
((
seekDoneTime
<
audioPlayer
.
duration
)
||
(
audioPlayer
.
state
==
"
paused
"
))
{
if
((
seekDoneTime
<
audioPlayer
.
duration
)
||
(
audioPlayer
.
state
==
'
paused
'
))
{
nextStep
(
mySteps
);
}
});
}
function
setVolumeCallback
(
mySteps
)
{
audioPlayer
.
on
(
'
volumeChange
'
,
()
=>
{
console
.
info
(
`case setvolume called`
);
mySteps
.
shift
();
mySteps
.
shift
();
if
(
audioPlayer
.
state
==
"
playing
"
)
{
if
(
audioPlayer
.
state
==
'
playing
'
)
{
sleep
(
PLAY_TIME
);
}
nextStep
(
mySteps
);
});
}
function
setFinishCallback
(
mySteps
)
{
audioPlayer
.
on
(
'
finish
'
,
()
=>
{
mySteps
.
shift
();
expect
(
audioPlayer
.
state
).
assertEqual
(
'
stopped
'
);
...
...
@@ -210,7 +232,9 @@ describe('PlayerLocalTestAudioFUNC', function () {
console
.
info
(
`case finish called`
);
nextStep
(
mySteps
);
});
}
function
setErrorCallback
(
mySteps
)
{
audioPlayer
.
on
(
'
error
'
,
(
err
)
=>
{
console
.
info
(
`case error called,errName is
${
err
.
name
}
`
);
console
.
info
(
`case error called,errCode is
${
err
.
code
}
`
);
...
...
@@ -225,6 +249,26 @@ describe('PlayerLocalTestAudioFUNC', function () {
}
nextStep
(
mySteps
);
});
}
function
setCallback
(
mySteps
,
done
)
{
console
.
info
(
`case setCallback`
);
setSrcCallback
(
mySteps
);
setPlayCallback
(
mySteps
);
setPauseCallback
(
mySteps
);
setResetCallback
(
mySteps
);
setStopCallback
(
mySteps
);
setSeekCallback
(
mySteps
);
setVolumeCallback
(
mySteps
);
setFinishCallback
(
mySteps
);
setErrorCallback
(
mySteps
);
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
().
assertFail
();
}
done
();
},
TIME_OUT
);
};
/* *
...
...
@@ -238,15 +282,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
it
(
'
SUB_MEDIA_PLAYER_LOCAL_AUDIO_Function_04_0100
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -260,15 +297,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
it
(
'
SUB_MEDIA_PLAYER_LOCAL_AUDIO_Function_04_0200
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
RESET_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -282,15 +312,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
it
(
'
SUB_MEDIA_PLAYER_LOCAL_AUDIO_Function_04_0300
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
PLAY_STATE
,
RESET_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -304,15 +327,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
it
(
'
SUB_MEDIA_PLAYER_LOCAL_AUDIO_Function_04_0500
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
RESET_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -326,15 +342,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
it
(
'
SUB_MEDIA_PLAYER_LOCAL_AUDIO_Function_04_0600
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -348,15 +357,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
it
(
'
SUB_MEDIA_PLAYER_LOCAL_AUDIO_Function_04_0700
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
STOP_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -370,15 +372,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
it
(
'
SUB_MEDIA_PLAYER_LOCAL_AUDIO_Function_04_0800
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
PLAY_STATE
,
STOP_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -393,15 +388,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
STOP_STATE
,
RESET_STATE
,
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
PLAY_STATE
,
RESET_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -416,15 +404,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
STOP_STATE
,
RESET_STATE
,
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
RESET_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -439,15 +420,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
STOP_STATE
,
RESET_STATE
,
SRC_STATE
,
PLAY_STATE
,
RESET_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -461,15 +435,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
it
(
'
SUB_MEDIA_PLAYER_LOCAL_AUDIO_Function_04_1200
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
PLAY_STATE
,
RESET_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -483,15 +450,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
it
(
'
SUB_MEDIA_PLAYER_LOCAL_AUDIO_Function_04_1300
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
STOP_STATE
,
PAUSE_STATE
,
ERROR_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -505,15 +465,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
it
(
'
SUB_MEDIA_PLAYER_LOCAL_AUDIO_Function_04_1400
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
SEEK_STATE
,
0
,
PAUSE_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -528,15 +481,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
SEEK_STATE
,
DURATION_TIME
,
PLAY_STATE
,
FINISH_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -550,15 +496,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
it
(
'
SUB_MEDIA_PLAYER_LOCAL_AUDIO_Function_04_1600
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
PLAY_STATE
,
SEEK_STATE
,
0
,
PAUSE_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -572,15 +511,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
it
(
'
SUB_MEDIA_PLAYER_LOCAL_AUDIO_Function_04_1700
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
SEEK_STATE
,
0
,
RESET_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -594,15 +526,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
it
(
'
SUB_MEDIA_PLAYER_LOCAL_AUDIO_Function_04_1800
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
SEEK_STATE
,
0
,
STOP_STATE
,
RESET_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -616,15 +541,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
it
(
'
SUB_MEDIA_PLAYER_LOCAL_AUDIO_Function_04_1900
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
STOP_STATE
,
SEEK_STATE
,
0
,
ERROR_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -638,15 +556,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
it
(
'
SUB_MEDIA_PLAYER_LOCAL_AUDIO_Function_04_2000
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
SEEK_STATE
,
0
,
RESET_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -661,15 +572,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
SEEK_STATE
,
DURATION_TIME
/
RAND_NUM
,
STOP_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -683,15 +587,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
it
(
'
SUB_MEDIA_PLAYER_LOCAL_AUDIO_Function_04_2200
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
PLAY_STATE
,
SEEK_STATE
,
0
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -705,15 +602,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
it
(
'
SUB_MEDIA_PLAYER_LOCAL_AUDIO_Function_04_2300
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
PLAY_STATE
,
SEEK_STATE
,
0
,
STOP_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -728,15 +618,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
STOP_STATE
,
SEEK_STATE
,
0
,
ERROR_STATE
,
RESET_STATE
,
SRC_STATE
,
PLAY_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -750,15 +633,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
it
(
'
SUB_MEDIA_PLAYER_LOCAL_AUDIO_Function_04_2500
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
SEEK_STATE
,
0
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -773,15 +649,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
STOP_STATE
,
SEEK_STATE
,
SEEK_TIME
,
ERROR_STATE
,
PAUSE_STATE
,
ERROR_STATE
,
RESET_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -796,15 +665,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
STOP_STATE
,
SEEK_STATE
,
SEEK_TIME
,
ERROR_STATE
,
RESET_STATE
,
SRC_STATE
,
PLAY_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -818,15 +680,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
it
(
'
SUB_MEDIA_PLAYER_LOCAL_AUDIO_Function_04_2800
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
SEEK_STATE
,
DURATION_TIME
,
FINISH_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -841,15 +696,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
SEEK_STATE
,
DURATION_TIME
+
DELTA_TIME
,
FINISH_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -863,15 +711,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
it
(
'
SUB_MEDIA_PLAYER_LOCAL_AUDIO_Function_04_3000
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
SEEK_STATE
,
DURATION_TIME
/
RAND_NUM
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -885,15 +726,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
it
(
'
SUB_MEDIA_PLAYER_LOCAL_AUDIO_Function_04_3200
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
SEEK_STATE
,
0
,
PLAY_STATE
,
RESET_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -908,15 +742,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
SEEK_STATE
,
DURATION_TIME
,
PLAY_STATE
,
FINISH_STATE
,
RESET_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -931,15 +758,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
SEEK_STATE
,
DURATION_TIME
+
DELTA_TIME
,
PLAY_STATE
,
FINISH_STATE
,
RESET_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -954,15 +774,8 @@ describe('PlayerLocalTestAudioFUNC', function () {
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
SEEK_STATE
,
DURATION_TIME
+
DELTA_TIME
,
FINISH_STATE
,
PLAY_STATE
,
RESET_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -999,7 +812,7 @@ describe('PlayerLocalTestAudioFUNC', function () {
testAudioPlayer
.
seek
(
DURATION_TIME
);
});
testAudioPlayer
.
on
(
'
timeUpdate
'
,
(
seekDoneTime
)
=>
{
if
(
typeof
(
seekDoneTime
)
==
"
undefined
"
)
{
if
(
typeof
(
seekDoneTime
)
==
'
undefined
'
)
{
console
.
info
(
`case seek filed,errcode is
${
seekDoneTime
}
`
);
return
;
}
...
...
@@ -1043,14 +856,7 @@ describe('PlayerLocalTestAudioFUNC', function () {
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
VOLUME_STATE
,
0
,
VOLUME_STATE
,
MAX_VOLUME
,
RESET_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
})
multimedia/audio/audio_js_standard/audioPlayer/src/main/js/default/test/PlayerLocalTestAudioFormat.test.js
0 → 100644
浏览文件 @
1c1062e2
/*
* Copyright (C) 2021 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import
media
from
'
@ohos.multimedia.media
'
import
{
describe
,
beforeAll
,
beforeEach
,
afterEach
,
afterAll
,
it
,
expect
}
from
'
deccjsunit/index
'
describe
(
'
PlayerLocalTestAudioFormat
'
,
function
()
{
const
BASIC_PATH
=
'
file:///data/media/audio/
'
;
const
MAX_VOLUME
=
1
;
const
PLAY_TIME
=
3000
;
const
SEEK_TIME
=
10000
;
// 10s
let
isToSeek
=
false
;
let
isToDuration
=
false
;
beforeAll
(
function
()
{
console
.
info
(
'
beforeAll case
'
);
})
beforeEach
(
function
()
{
isToSeek
=
false
;
isToDuration
=
false
;
console
.
info
(
'
beforeEach case
'
);
})
afterEach
(
function
()
{
console
.
info
(
'
afterEach case
'
);
})
afterAll
(
function
()
{
console
.
info
(
'
afterAll case
'
);
})
function
sleep
(
time
)
{
for
(
let
t
=
Date
.
now
();
Date
.
now
()
-
t
<=
time
;);
}
function
setSrcCallback
(
audioPlayer
)
{
audioPlayer
.
on
(
'
dataLoad
'
,
()
=>
{
console
.
info
(
'
case set source success
'
);
expect
(
audioPlayer
.
state
).
assertEqual
(
'
paused
'
);
expect
(
audioPlayer
.
currentTime
).
assertEqual
(
0
);
audioPlayer
.
play
();
});
}
function
setPlayCallback
(
audioPlayer
)
{
audioPlayer
.
on
(
'
play
'
,
()
=>
{
console
.
info
(
'
case start to play
'
);
expect
(
audioPlayer
.
state
).
assertEqual
(
'
playing
'
);
sleep
(
PLAY_TIME
);
if
(
!
isToSeek
)
{
audioPlayer
.
pause
();
}
else
{
audioPlayer
.
seek
(
SEEK_TIME
);
}
});
}
function
setPauseCallback
(
audioPlayer
)
{
audioPlayer
.
on
(
'
pause
'
,
()
=>
{
console
.
info
(
'
case now is paused
'
);
expect
(
audioPlayer
.
state
).
assertEqual
(
'
paused
'
);
audioPlayer
.
setVolume
(
MAX_VOLUME
);
});
}
function
setResetCallback
(
audioPlayer
,
done
)
{
audioPlayer
.
on
(
'
reset
'
,
()
=>
{
console
.
info
(
'
case reset success
'
);
expect
(
audioPlayer
.
state
).
assertEqual
(
'
idle
'
);
audioPlayer
.
release
();
audioPlayer
=
undefined
;
done
();
});
}
function
setStopCallback
(
audioPlayer
)
{
audioPlayer
.
on
(
'
stop
'
,
()
=>
{
console
.
info
(
'
case stop success
'
);
expect
(
audioPlayer
.
state
).
assertEqual
(
'
stopped
'
);
audioPlayer
.
reset
();
});
}
function
setSeekCallback
(
audioPlayer
,
done
)
{
audioPlayer
.
on
(
'
timeUpdate
'
,
(
seekDoneTime
)
=>
{
if
(
typeof
(
seekDoneTime
)
==
"
undefined
"
)
{
console
.
info
(
`case seek filed,errcode is
${
seekDoneTime
}
`
);
audioPlayer
.
release
();
expect
().
assertFail
();
done
();
return
;
}
console
.
info
(
'
case seek success, and seek time is
'
+
seekDoneTime
);
if
(
!
isToDuration
)
{
expect
(
SEEK_TIME
).
assertEqual
(
seekDoneTime
);
isToDuration
=
true
;
sleep
(
PLAY_TIME
);
audioPlayer
.
seek
(
audioPlayer
.
duration
);
}
else
{
expect
(
audioPlayer
.
duration
).
assertEqual
(
seekDoneTime
);
}
});
}
function
setVolumeCallback
(
audioPlayer
)
{
audioPlayer
.
on
(
'
volumeChange
'
,
()
=>
{
console
.
info
(
'
case set volume value to
'
+
MAX_VOLUME
);
audioPlayer
.
play
();
isToSeek
=
true
;
});
}
function
setFinishCallback
(
audioPlayer
)
{
audioPlayer
.
on
(
'
finish
'
,
()
=>
{
console
.
info
(
'
case play end
'
);
expect
(
audioPlayer
.
state
).
assertEqual
(
'
stopped
'
);
audioPlayer
.
stop
();
});
}
function
setErrorCallback
(
audioPlayer
,
done
)
{
audioPlayer
.
on
(
'
error
'
,
(
err
)
=>
{
console
.
info
(
`case error called,errName is
${
err
.
name
}
`
);
console
.
info
(
`case error called,errCode is
${
err
.
code
}
`
);
console
.
info
(
`case error called,errMessage is
${
err
.
message
}
`
);
audioPlayer
.
release
();
expect
().
assertFail
();
done
();
});
}
function
playSource
(
audioSource
,
done
)
{
let
audioPlayer
=
media
.
createAudioPlayer
();
if
(
typeof
(
audioPlayer
)
==
'
undefined
'
)
{
console
.
info
(
'
case create player is faild
'
);
expect
().
assertFail
();
done
();
return
;
}
setSrcCallback
(
audioPlayer
);
setPlayCallback
(
audioPlayer
);
setPauseCallback
(
audioPlayer
);
setResetCallback
(
audioPlayer
,
done
);
setStopCallback
(
audioPlayer
);
setSeekCallback
(
audioPlayer
,
done
);
setVolumeCallback
(
audioPlayer
);
setFinishCallback
(
audioPlayer
);
setErrorCallback
(
audioPlayer
,
done
);
audioPlayer
.
src
=
audioSource
;
}
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_MP3_01_0100
* @tc.name : 001.Playing mp3 streams
* @tc.desc : Format : MP3
Codec : MP3
Samplerate : 48000
Bitrate : 32
Channel : 1
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_MP3_01_0100
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
01.mp3
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_MP3_01_0200
* @tc.name : 002.Playing mp3 streams
* @tc.desc : Format : MP3
Codec : MP3
Samplerate : 48000
Bitrate : 16/32
Channel : 2
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_MP3_01_0200
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
02.mp3
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_MP3_01_0300
* @tc.name : 003.Playing mp3 streams
* @tc.desc : Format : MP3
Codec : MP3
Samplerate : 48000
Bitrate : 32
Channel : 2
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_MP3_01_0300
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
03.mp3
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_MP3_01_0400
* @tc.name : 004.Playing mp3 streams
* @tc.desc : Format : MP3
Codec : MP3
Samplerate : 48000
Bitrate : 64
Channel : 2
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_MP3_01_0400
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
04.mp3
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_0100
* @tc.name : 001.Playing mp4 streams
* @tc.desc : Format : MP4
Codec : AAC LC
Samplerate : 48000
Bitrate : 32
Channel : 1
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_0100
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
47.mp4
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_0200
* @tc.name : 002.Playing mp4 streams
* @tc.desc : Format : MP4
Codec : AAC LC
Samplerate : 48000
Bitrate : 16
Channel : 2
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_0200
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
48.mp4
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_0300
* @tc.name : 003.Playing mp4 streams
* @tc.desc : Format : MP4
Codec : AAC LC
Samplerate : 48000
Bitrate : 64
Channel : 2
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_0300
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
49.mp4
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_0400
* @tc.name : 004.Playing mp4 streams
* @tc.desc : Format : MP4
Codec : AAC LC
Samplerate : 48000
Bitrate : 32
Channel : 2
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_0400
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
50.mp4
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_0500
* @tc.name : 005.Playing mp4 streams
* @tc.desc : Format : MP4
Codec : AAC LC
Samplerate : 96000
Bitrate : 32
Channel : 1
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_0500
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
51.mp4
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_0600
* @tc.name : 006.Playing mp4 streams
* @tc.desc : Format : MP4
Codec : AAC LC
Samplerate : 96000
Bitrate : 64
Channel : 2
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_0600
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
54.mp4
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_0700
* @tc.name : 007.Playing mp4 streams
* @tc.desc : Format : MP4
Codec : MP3
Samplerate : 48000
Bitrate : 32
Channel : 1
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_0700
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
64.mp4
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_0800
* @tc.name : 008.Playing mp4 streams
* @tc.desc : Format : MP4
Codec : MP3
Samplerate : 48000
Bitrate : 16
Channel : 2
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_0800
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
65.mp4
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_0900
* @tc.name : 009.Playing mp4 streams
* @tc.desc : Format : MP4
Codec : MP3
Samplerate : 48000
Bitrate : 64
Channel : 2
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_0900
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
66.mp4
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_1000
* @tc.name : 010.Playing mp4 streams
* @tc.desc : Format : MP4
Codec : MP3
Samplerate : 48000
Bitrate : 32
Channel : 2
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_1000
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
67.mp4
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_1100
* @tc.name : 011.Playing mp4 streams
* @tc.desc : Format : MP4
Codec : Vorbis
Samplerate : 48000
Bitrate : 16
Channel : 2
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_1100
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
92.mp4
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_1200
* @tc.name : 012.Playing mp4 streams
* @tc.desc : Format : MP4
Codec : Vorbis
Samplerate : 48000
Bitrate : 64
Channel : 2
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_1200
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
93.mp4
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_1300
* @tc.name : 013.Playing mp4 streams
* @tc.desc : Format : MP4
Codec : Vorbis
Samplerate : 48000
Bitrate : 32
Channel : 2
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_1300
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
94.mp4
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_1400
* @tc.name : 014.Playing mp4 streams
* @tc.desc : Format : MP4
Codec : Vorbis
Samplerate : 96000
Bitrate : 16
Channel : 2
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_1400
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
96.mp4
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_1500
* @tc.name : 015.Playing mp4 streams
* @tc.desc : Format : MP4
Codec : Vorbis
Samplerate : 96000
Bitrate : 32
Channel : 2
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_1500
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
97.mp4
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_1600
* @tc.name : 016.Playing mp4 streams
* @tc.desc : Format : MP4
Codec : Vorbis
Samplerate : 96000
Bitrate : 64
Channel : 2
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_MP4_01_1600
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
98.mp4
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_M4A_01_0100
* @tc.name : 001.Playing m4a streams
* @tc.desc : Format : M4A
Codec : AAC LC
Samplerate : 48000
Bitrate : 32
Channel : 1
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_M4A_01_0100
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
55.m4a
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_M4A_01_0200
* @tc.name : 002.Playing m4a streams
* @tc.desc : Format : M4A
Codec : AAC LC
Samplerate : 48000
Bitrate : 16
Channel : 2
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_M4A_01_0200
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
56.m4a
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_M4A_01_0300
* @tc.name : 003.Playing m4a streams
* @tc.desc : Format : M4A
Codec : AAC LC
Samplerate : 48000
Bitrate : 64
Channel : 2
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_M4A_01_0300
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
57.m4a
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_M4A_01_0400
* @tc.name : 004.Playing m4a streams
* @tc.desc : Format : M4A
Codec : AAC LC
Samplerate : 48000
Bitrate : 32
Channel : 2
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_M4A_01_0400
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
58.m4a
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_M4A_01_0500
* @tc.name : 005.Playing m4a streams
* @tc.desc : Format : M4A
Codec : AAC LC
Samplerate : 96000
Bitrate : 32
Channel : 1
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_M4A_01_0500
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
59.m4a
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_M4A_01_0600
* @tc.name : 006.Playing m4a streams
* @tc.desc : Format : M4A
Codec : AAC LC
Samplerate : 96000
Bitrate : 32
Channel : 2
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_M4A_01_0600
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
61.m4a
'
,
done
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_LOCAL_Format_M4A_01_0700
* @tc.name : 007.Playing m4a streams
* @tc.desc : Format : M4A
Codec : AAC LC
Samplerate : 96000
Bitrate : 64
Channel : 2
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_PLAYER_LOCAL_Format_M4A_01_0700
'
,
0
,
async
function
(
done
)
{
playSource
(
BASIC_PATH
+
'
62.m4a
'
,
done
);
})
})
multimedia/audio/audio_js_standard/audioPlayer_API/src/main/js/default/test/PlayerLocalTestAudioAPI.test.js
浏览文件 @
1c1062e2
...
...
@@ -20,7 +20,7 @@ describe('PlayerLocalTestAudioAPI', function () {
let
audioPlayer
=
media
.
createAudioPlayer
();
let
loopValue
=
false
;
let
isTimeOut
=
false
;
const
A
udio_SOURCE
=
"
data/media/audio/Homey.mp3
"
;
const
A
UDIO_SOURCE
=
'
file://data/media/audio/01.mp3
'
;
const
PLAY_TIME
=
3000
;
const
END_STATE
=
0
;
const
SRC_STATE
=
1
;
...
...
@@ -34,7 +34,7 @@ describe('PlayerLocalTestAudioAPI', function () {
const
ERROR_STATE
=
9
;
const
FINISH_STATE
=
10
;
const
LOOP_STATE
=
11
;
const
DURATION_TIME
=
89239
;
const
DURATION_TIME
=
99432
;
const
SEEK_TIME
=
5000
;
const
DELTA_TIME
=
1000
;
const
SECOND_INDEX
=
1
;
...
...
@@ -42,20 +42,20 @@ describe('PlayerLocalTestAudioAPI', function () {
const
VOLUME_VALUE
=
0.5
;
beforeAll
(
function
()
{
console
.
info
(
"
beforeAll case
"
);
console
.
info
(
'
beforeAll case
'
);
})
beforeEach
(
function
()
{
isTimeOut
=
false
;
console
.
info
(
"
beforeEach case
"
);
console
.
info
(
'
beforeEach case
'
);
})
afterEach
(
function
()
{
console
.
info
(
"
afterEach case
"
);
console
.
info
(
'
afterEach case
'
);
})
afterAll
(
function
()
{
console
.
info
(
"
afterAll case
"
);
console
.
info
(
'
afterAll case
'
);
})
function
sleep
(
time
)
{
...
...
@@ -63,7 +63,15 @@ describe('PlayerLocalTestAudioAPI', function () {
};
function
initAudioPlayer
()
{
if
(
typeof
(
audioPlayer
)
!=
'
undefined
'
)
{
audioPlayer
.
release
();
audioPlayer
=
undefined
;
}
audioPlayer
=
media
.
createAudioPlayer
();
if
(
typeof
(
audioPlayer
)
==
'
undefined
'
)
{
console
.
info
(
'
case create player is faild
'
);
expect
().
assertFail
();
}
}
function
nextStep
(
mySteps
)
{
...
...
@@ -74,7 +82,7 @@ describe('PlayerLocalTestAudioAPI', function () {
switch
(
mySteps
[
0
])
{
case
SRC_STATE
:
console
.
info
(
`case to prepare`
);
audioPlayer
.
src
=
A
udio
_SOURCE
;
audioPlayer
.
src
=
A
UDIO
_SOURCE
;
break
;
case
PLAY_STATE
:
console
.
info
(
`case to play`
);
...
...
@@ -104,6 +112,7 @@ describe('PlayerLocalTestAudioAPI', function () {
console
.
info
(
`case to release`
);
mySteps
.
shift
();
audioPlayer
.
release
();
audioPlayer
=
undefined
;
nextStep
(
mySteps
);
break
;
case
LOOP_STATE
:
...
...
@@ -118,8 +127,7 @@ describe('PlayerLocalTestAudioAPI', function () {
}
}
function
setCallback
(
mySteps
)
{
console
.
info
(
`case setCallback`
);
function
setSrcCallback
(
mySteps
)
{
audioPlayer
.
on
(
'
dataLoad
'
,
()
=>
{
mySteps
.
shift
();
console
.
info
(
`case dataLoad called`
);
...
...
@@ -128,7 +136,9 @@ describe('PlayerLocalTestAudioAPI', function () {
expect
(
audioPlayer
.
state
).
assertEqual
(
'
paused
'
);
nextStep
(
mySteps
);
});
}
function
setPlayCallback
(
mySteps
)
{
audioPlayer
.
on
(
'
play
'
,
()
=>
{
mySteps
.
shift
();
console
.
info
(
`case play called`
);
...
...
@@ -141,7 +151,9 @@ describe('PlayerLocalTestAudioAPI', function () {
expect
(
audioPlayer
.
state
).
assertEqual
(
'
playing
'
);
nextStep
(
mySteps
);
});
}
function
setPauseCallback
(
mySteps
)
{
audioPlayer
.
on
(
'
pause
'
,
()
=>
{
mySteps
.
shift
();
console
.
info
(
`case pause called`
);
...
...
@@ -150,14 +162,18 @@ describe('PlayerLocalTestAudioAPI', function () {
expect
(
audioPlayer
.
state
).
assertEqual
(
'
paused
'
);
nextStep
(
mySteps
);
});
}
function
setResetCallback
(
mySteps
)
{
audioPlayer
.
on
(
'
reset
'
,
()
=>
{
mySteps
.
shift
();
console
.
info
(
`case reset called`
);
expect
(
audioPlayer
.
state
).
assertEqual
(
'
idle
'
);
nextStep
(
mySteps
);
});
}
function
setStopCallback
(
mySteps
)
{
audioPlayer
.
on
(
'
stop
'
,
()
=>
{
if
(
mySteps
[
0
]
==
RESET_STATE
)
{
console
.
info
(
`case reset stop called`
);
...
...
@@ -170,9 +186,11 @@ describe('PlayerLocalTestAudioAPI', function () {
expect
(
audioPlayer
.
state
).
assertEqual
(
'
stopped
'
);
nextStep
(
mySteps
);
});
}
function
setSeekCallback
(
mySteps
)
{
audioPlayer
.
on
(
'
timeUpdate
'
,
(
seekDoneTime
)
=>
{
if
(
typeof
(
seekDoneTime
)
==
"
undefined
"
)
{
if
(
typeof
(
seekDoneTime
)
==
'
undefined
'
)
{
console
.
info
(
`case seek filed,errcode is
${
seekDoneTime
}
`
);
return
;
}
...
...
@@ -189,21 +207,25 @@ describe('PlayerLocalTestAudioAPI', function () {
console
.
info
(
'
case loop is true
'
);
sleep
(
PLAY_STATE
);
}
if
((
seekDoneTime
<
audioPlayer
.
duration
)
||
(
audioPlayer
.
state
==
"
paused
"
))
{
if
((
seekDoneTime
<
audioPlayer
.
duration
)
||
(
audioPlayer
.
state
==
'
paused
'
))
{
nextStep
(
mySteps
);
}
});
}
function
setVolumeCallback
(
mySteps
)
{
audioPlayer
.
on
(
'
volumeChange
'
,
()
=>
{
console
.
info
(
`case setvolume called`
);
mySteps
.
shift
();
mySteps
.
shift
();
if
(
audioPlayer
.
state
==
"
playing
"
)
{
if
(
audioPlayer
.
state
==
'
playing
'
)
{
sleep
(
PLAY_TIME
);
}
nextStep
(
mySteps
);
});
}
function
setFinishCallback
(
mySteps
)
{
audioPlayer
.
on
(
'
finish
'
,
()
=>
{
mySteps
.
shift
();
expect
(
audioPlayer
.
state
).
assertEqual
(
'
stopped
'
);
...
...
@@ -211,7 +233,9 @@ describe('PlayerLocalTestAudioAPI', function () {
console
.
info
(
`case finish called`
);
nextStep
(
mySteps
);
});
}
function
setErrorCallback
(
mySteps
)
{
audioPlayer
.
on
(
'
error
'
,
(
err
)
=>
{
console
.
info
(
`case error called,errName is
${
err
.
name
}
`
);
console
.
info
(
`case error called,errCode is
${
err
.
code
}
`
);
...
...
@@ -231,6 +255,26 @@ describe('PlayerLocalTestAudioAPI', function () {
nextStep
(
mySteps
);
}
});
}
function
setCallback
(
mySteps
,
done
)
{
console
.
info
(
`case setCallback`
);
setSrcCallback
(
mySteps
);
setPlayCallback
(
mySteps
);
setPauseCallback
(
mySteps
);
setResetCallback
(
mySteps
);
setStopCallback
(
mySteps
);
setSeekCallback
(
mySteps
);
setVolumeCallback
(
mySteps
);
setFinishCallback
(
mySteps
);
setErrorCallback
(
mySteps
);
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
};
/* *
...
...
@@ -244,15 +288,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_Play_API_0100
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
PLAY_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
audioPlayer
.
src
=
Audio_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
})
/* *
...
...
@@ -266,15 +303,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_Play_API_0200
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
STOP_STATE
,
PLAY_STATE
,
ERROR_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
audioPlayer
.
src
=
Audio_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
})
/* *
...
...
@@ -288,15 +318,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_Play_API_0300
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
SEEK_STATE
,
SEEK_TIME
,
PLAY_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
audioPlayer
.
src
=
Audio_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
})
/* *
...
...
@@ -310,15 +333,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_Play_API_0400
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
RESET_STATE
,
PLAY_STATE
,
ERROR_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
audioPlayer
.
src
=
Audio_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
})
/* *
...
...
@@ -332,15 +348,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_Pause_API_0100
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
PAUSE_STATE
,
ERROR_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
pause
();
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
...
...
@@ -354,15 +363,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_Pause_API_0200
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
audioPlayer
.
src
=
Audio_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
})
/* *
...
...
@@ -376,15 +378,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_Pause_API_0300
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
PLAY_STATE
,
STOP_STATE
,
PAUSE_STATE
,
ERROR_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
audioPlayer
.
src
=
Audio_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
})
/* *
...
...
@@ -398,15 +393,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_Pause_API_0400
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
SEEK_STATE
,
SEEK_TIME
,
PAUSE_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
audioPlayer
.
src
=
Audio_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
})
/* *
...
...
@@ -420,15 +408,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_Stop_API_0100
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
STOP_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
audioPlayer
.
src
=
Audio_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
})
/* *
...
...
@@ -442,15 +423,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_Stop_API_0200
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
STOP_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
audioPlayer
.
src
=
Audio_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
})
/* *
...
...
@@ -464,15 +438,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_Stop_API_0300
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
SEEK_STATE
,
SEEK_TIME
,
STOP_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
audioPlayer
.
src
=
Audio_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
})
/* *
...
...
@@ -486,15 +453,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_Seek_API_0100
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
SEEK_STATE
,
SEEK_TIME
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
audioPlayer
.
src
=
Audio_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
})
/* *
...
...
@@ -508,15 +468,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_Seek_API_0200
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
SEEK_STATE
,
SEEK_TIME
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
audioPlayer
.
src
=
Audio_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_AudioPlayer_Seek_API_0300
...
...
@@ -529,15 +482,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_Seek_API_0300
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
SEEK_STATE
,
0
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
audioPlayer
.
src
=
Audio_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
})
/* *
...
...
@@ -551,15 +497,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_Reset_API_0100
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
RESET_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
audioPlayer
.
src
=
Audio_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
})
/* *
...
...
@@ -573,15 +512,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_Reset_API_0200
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
RESET_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
audioPlayer
.
src
=
Audio_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
})
/* *
...
...
@@ -595,15 +527,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_SetVolume_API_0100
'
,
0
,
async
function
(
done
)
{
var
mySteps
=
new
Array
(
VOLUME_STATE
,
VOLUME_VALUE
,
ERROR_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
setVolume
(
VOLUME_VALUE
);
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_AudioPlayer_SetVolume_API_0200
...
...
@@ -616,15 +541,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_SetVolume_API_0200
'
,
0
,
async
function
(
done
)
{
var
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
VOLUME_STATE
,
VOLUME_VALUE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
audioPlayer
.
src
=
Audio_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
})
/* *
* @tc.number : SUB_MEDIA_PLAYER_AudioPlayer_SetVolume_API_0300
...
...
@@ -637,15 +555,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_SetVolume_API_0300
'
,
0
,
async
function
(
done
)
{
var
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
VOLUME_STATE
,
VOLUME_VALUE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
audioPlayer
.
src
=
Audio_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
})
/* *
...
...
@@ -659,15 +570,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_Release_API_0100
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
RELEASE_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
audioPlayer
.
src
=
Audio_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
})
/* *
...
...
@@ -681,15 +585,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_Release_API_0200
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
PAUSE_STATE
,
RELEASE_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
audioPlayer
.
src
=
Audio_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
})
/* *
...
...
@@ -703,15 +600,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_Release_API_0300
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
STOP_STATE
,
RELEASE_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
audioPlayer
.
src
=
Audio_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
})
/* *
...
...
@@ -725,15 +615,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_Release_API_0400
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
SEEK_STATE
,
SEEK_TIME
,
RELEASE_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
audioPlayer
.
src
=
Audio_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
})
/* *
...
...
@@ -747,15 +630,8 @@ describe('PlayerLocalTestAudioAPI', function () {
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_Release_API_0400
'
,
0
,
async
function
(
done
)
{
let
mySteps
=
new
Array
(
SRC_STATE
,
PLAY_STATE
,
RESET_STATE
,
RELEASE_STATE
,
END_STATE
);
initAudioPlayer
();
setCallback
(
mySteps
);
audioPlayer
.
src
=
Audio_SOURCE
;
setTimeout
(
function
()
{
if
(
!
isTimeOut
)
{
console
.
info
(
`case is time out!`
);
expect
(
isTimeOut
).
assertTrue
();
}
done
();
},
TIME_OUT
);
setCallback
(
mySteps
,
done
);
audioPlayer
.
src
=
AUDIO_SOURCE
;
})
/* *
...
...
@@ -786,9 +662,9 @@ describe('PlayerLocalTestAudioAPI', function () {
*/
it
(
'
SUB_MEDIA_PLAYER_AudioPlayer_Time_API_0200
'
,
0
,
async
function
(
done
)
{
initAudioPlayer
();
audioPlayer
.
src
=
A
udio
_SOURCE
;
audioPlayer
.
src
=
A
UDIO
_SOURCE
;
sleep
(
PLAY_TIME
);
expect
(
audioPlayer
.
src
).
assertEqual
(
A
udio
_SOURCE
);
expect
(
audioPlayer
.
src
).
assertEqual
(
A
UDIO
_SOURCE
);
expect
(
audioPlayer
.
currentTime
).
assertEqual
(
0
);
expect
(
audioPlayer
.
duration
).
assertEqual
(
DURATION_TIME
);
expect
(
audioPlayer
.
state
).
assertEqual
(
'
paused
'
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录