Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
7d6deff8
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看板
提交
7d6deff8
编写于
9月 22, 2021
作者:
O
openharmony_ci
提交者:
Gitee
9月 22, 2021
浏览文件
操作
浏览文件
下载
差异文件
!667 media test native测试用例更新
Merge pull request !667 from XUXIAOBO/xxb-wzy-master-patch-51773
上级
cc8e5e30
38fad40f
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
134 addition
and
111 deletion
+134
-111
multimedia/media/media_cpp_test_standard/player/include/ActsPlayerAPITest.h
...edia_cpp_test_standard/player/include/ActsPlayerAPITest.h
+1
-1
multimedia/media/media_cpp_test_standard/player/include/ActsPlayerFuncTest.h
...dia_cpp_test_standard/player/include/ActsPlayerFuncTest.h
+1
-1
multimedia/media/media_cpp_test_standard/player/include/TestPlayer.h
...media/media_cpp_test_standard/player/include/TestPlayer.h
+120
-0
multimedia/media/media_cpp_test_standard/player/include/Testplayer.h
...media/media_cpp_test_standard/player/include/Testplayer.h
+2
-104
multimedia/media/media_cpp_test_standard/player/include/common.h
...dia/media/media_cpp_test_standard/player/include/common.h
+4
-0
multimedia/media/media_cpp_test_standard/player/src/TestParamsConfig.cpp
...a/media_cpp_test_standard/player/src/TestParamsConfig.cpp
+3
-2
multimedia/media/media_cpp_test_standard/player/src/TestPlayer.cpp
...a/media/media_cpp_test_standard/player/src/TestPlayer.cpp
+3
-3
未找到文件。
multimedia/media/media_cpp_test_standard/player/include/ActsPlayerAPITest.h
浏览文件 @
7d6deff8
...
...
@@ -15,7 +15,7 @@
#ifndef PLAYER_API_TEST_H
#define PLAYER_API_TEST_H
#include "Test
p
layer.h"
#include "Test
P
layer.h"
namespace
OHOS
{
namespace
Media
{
...
...
multimedia/media/media_cpp_test_standard/player/include/ActsPlayerFuncTest.h
浏览文件 @
7d6deff8
...
...
@@ -15,7 +15,7 @@
#ifndef PLAYER_FUNC_TEST_H
#define PLAYER_FUNC_TEST_H
#include "Test
p
layer.h"
#include "Test
P
layer.h"
namespace
OHOS
{
namespace
Media
{
...
...
multimedia/media/media_cpp_test_standard/player/include/TestPlayer.h
0 → 100644
浏览文件 @
7d6deff8
/*
* 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.
*/
#ifndef PLAYER_TEST_H
#define PLAYER_TEST_H
#include "securec.h"
#include "TestParamsConfig.h"
#include "window_manager.h"
#include "surface_type.h"
#include "display_type.h"
namespace
OHOS
{
namespace
Media
{
static
const
std
::
string
SURFACE_STRIDE_ALIGNMENT
=
"SURFACE_STRIDE_ALIGNMENT"
;
static
const
std
::
string
SURFACE_FORMAT
=
"SURFACE_FORMAT"
;
static
WindowConfig
g_config
=
{
1920
,
1080
,
PIXEL_FMT_RGBA_8888
,
0
,
0
,
WINDOW_TYPE_NORMAL
};
static
WindowConfig
g_sub_config
=
{
720
,
480
,
PIXEL_FMT_YCRCB_420_SP
,
0
,
0
,
WINDOW_TYPE_VIDEO
,
};
class
PlayerSignal
{
public:
PlayerStates
state_
=
PLAYER_IDLE
;
int32_t
seekPositon_
;
bool
seekDoneFlag_
;
bool
mutexFlag_
=
true
;
std
::
mutex
mutexSeek_
;
std
::
mutex
mutexReset_
;
std
::
mutex
mutexPrepare_
;
std
::
mutex
mutexPlay_
;
std
::
mutex
mutexPause_
;
std
::
mutex
mutexStop_
;
std
::
condition_variable
condVarSeek_
;
std
::
condition_variable
condVarReset_
;
std
::
condition_variable
condVarPrepare_
;
std
::
condition_variable
condVarPlay_
;
std
::
condition_variable
condVarPause_
;
std
::
condition_variable
condVarStop_
;
void
SetState
(
PlayerStates
state
);
void
SetSeekResult
(
bool
seekDoneFlag
);
};
class
TestPlayer
{
public:
std
::
shared_ptr
<
Player
>
player_
=
nullptr
;
sptr
<
Window
>
window_
=
nullptr
;
explicit
TestPlayer
(
std
::
shared_ptr
<
PlayerSignal
>
test
);
virtual
~
TestPlayer
();
bool
CreatePlayer
();
int32_t
SetSource
(
const
std
::
string
&
uri
);
int32_t
SetDataSrc
(
const
std
::
string
&
uri
,
bool
seekable
);
int32_t
Play
();
int32_t
Prepare
();
int32_t
PrepareAsync
();
int32_t
Pause
();
int32_t
Stop
();
int32_t
Reset
();
int32_t
Release
();
int32_t
SetVolume
(
float
leftVolume
,
float
rightVolume
);
int32_t
Seek
(
int32_t
mseconds
,
PlayerSeekMode
mode
);
int32_t
GetCurrentTime
(
int32_t
&
currentTime
);
int32_t
GetDuration
(
int32_t
&
duration
);
int32_t
SetPlaybackSpeed
(
PlaybackRateMode
mode
);
int32_t
GetPlaybackSpeed
(
PlaybackRateMode
&
mode
);
sptr
<
Surface
>
GetVideoSurface
(
WindowConfig
g_sub_config
);
int32_t
SetVideoSurface
(
sptr
<
Surface
>
surface
);
bool
IsPlaying
();
bool
IsLooping
();
int32_t
SetLooping
(
bool
loop
);
int32_t
SetPlayerCallback
(
const
std
::
shared_ptr
<
PlayerCallback
>
&
callback
);
private:
std
::
shared_ptr
<
PlayerSignal
>
test_
;
};
class
TestPlayerCallback
:
public
PlayerCallback
{
public:
int
errorNum_
=
0
;
PlayerStates
state_
=
PLAYER_STATE_ERROR
;
explicit
TestPlayerCallback
(
std
::
shared_ptr
<
PlayerSignal
>
test
);
virtual
~
TestPlayerCallback
();
void
OnError
(
PlayerErrorType
errorType
,
int32_t
errorCode
);
int
WaitForSeekDone
(
int32_t
currentPositon
);
void
OnInfo
(
PlayerOnInfoType
type
,
int32_t
extra
,
const
Format
&
infoBody
=
{});
int
WaitForState
(
PlayerStates
state
);
private:
void
PrintState
(
PlayerStates
state
);
PlayerErrorType
errorType_
=
PLAYER_ERROR_UNKNOWN
;
int32_t
errorCode_
=
-
1
;
bool
seekDoneFlag_
=
false
;
int32_t
postion_
=
0
;
std
::
shared_ptr
<
PlayerSignal
>
test_
;
};
}
}
#endif
\ No newline at end of file
multimedia/media/media_cpp_test_standard/player/include/Testplayer.h
浏览文件 @
7d6deff8
...
...
@@ -13,108 +13,6 @@
* limitations under the License.
*/
#ifndef PLAYER_TEST_H
#define PLAYER_TEST_H
#include "securec.h"
#include "TestParamsConfig.h"
#include "window_manager.h"
#include "surface_type.h"
#include "display_type.h"
namespace
OHOS
{
namespace
Media
{
static
const
std
::
string
SURFACE_STRIDE_ALIGNMENT
=
"SURFACE_STRIDE_ALIGNMENT"
;
static
const
std
::
string
SURFACE_FORMAT
=
"SURFACE_FORMAT"
;
static
WindowConfig
g_config
=
{
1920
,
1080
,
PIXEL_FMT_RGBA_8888
,
0
,
0
,
WINDOW_TYPE_NORMAL
};
static
WindowConfig
g_sub_config
=
{
720
,
480
,
PIXEL_FMT_YCRCB_420_SP
,
0
,
0
,
WINDOW_TYPE_VIDEO
,
};
class
PlayerSignal
{
public:
PlayerStates
state_
=
PLAYER_IDLE
;
int32_t
seekPositon_
;
bool
seekDoneFlag_
;
bool
mutexFlag_
=
true
;
std
::
mutex
mutexSeek_
;
std
::
mutex
mutexReset_
;
std
::
mutex
mutexPrepare_
;
std
::
mutex
mutexPlay_
;
std
::
mutex
mutexPause_
;
std
::
mutex
mutexStop_
;
std
::
condition_variable
condVarSeek_
;
std
::
condition_variable
condVarReset_
;
std
::
condition_variable
condVarPrepare_
;
std
::
condition_variable
condVarPlay_
;
std
::
condition_variable
condVarPause_
;
std
::
condition_variable
condVarStop_
;
void
SetState
(
PlayerStates
state
);
void
SetSeekResult
(
bool
seekDoneFlag
);
};
class
TestPlayer
{
public:
std
::
shared_ptr
<
Player
>
player_
=
nullptr
;
sptr
<
Window
>
window_
=
nullptr
;
explicit
TestPlayer
(
std
::
shared_ptr
<
PlayerSignal
>
test
);
virtual
~
TestPlayer
();
bool
CreatePlayer
();
int32_t
SetSource
(
const
std
::
string
&
uri
);
int32_t
SetDataSrc
(
const
std
::
string
&
uri
,
bool
seekable
);
int32_t
Play
();
int32_t
Prepare
();
int32_t
PrepareAsync
();
int32_t
Pause
();
int32_t
Stop
();
int32_t
Reset
();
int32_t
Release
();
int32_t
SetVolume
(
float
leftVolume
,
float
rightVolume
);
int32_t
Seek
(
int32_t
mseconds
,
PlayerSeekMode
mode
);
int32_t
GetCurrentTime
(
int32_t
&
currentTime
);
int32_t
GetDuration
(
int32_t
&
duration
);
int32_t
SetPlaybackSpeed
(
PlaybackRateMode
mode
);
int32_t
GetPlaybackSpeed
(
PlaybackRateMode
&
mode
);
sptr
<
Surface
>
GetVideoSurface
(
WindowConfig
g_sub_config
);
int32_t
SetVideoSurface
(
sptr
<
Surface
>
surface
);
bool
IsPlaying
();
bool
IsLooping
();
int32_t
SetLooping
(
bool
loop
);
int32_t
SetPlayerCallback
(
const
std
::
shared_ptr
<
PlayerCallback
>
&
callback
);
private:
std
::
shared_ptr
<
PlayerSignal
>
test_
;
};
class
TestPlayerCallback
:
public
PlayerCallback
{
public:
int
errorNum_
=
0
;
PlayerStates
state_
=
PLAYER_STATE_ERROR
;
explicit
TestPlayerCallback
(
std
::
shared_ptr
<
PlayerSignal
>
test
);
virtual
~
TestPlayerCallback
();
void
OnError
(
PlayerErrorType
errorType
,
int32_t
errorCode
);
int
WaitForSeekDone
(
int32_t
currentPositon
);
void
OnInfo
(
PlayerOnInfoType
type
,
int32_t
extra
,
const
Format
&
infoBody
=
{});
int
WaitForState
(
PlayerStates
state
);
private:
void
PrintState
(
PlayerStates
state
);
PlayerErrorType
errorType_
=
PLAYER_ERROR_UNKNOWN
;
int32_t
errorCode_
=
-
1
;
bool
seekDoneFlag_
=
false
;
int32_t
postion_
=
0
;
std
::
shared_ptr
<
PlayerSignal
>
test_
;
};
}
}
#ifndef DISABLE_PLAYER_TEST_H
#define DISABLE_PLAYER_TEST_H
#endif
\ No newline at end of file
multimedia/media/media_cpp_test_standard/player/include/common.h
浏览文件 @
7d6deff8
...
...
@@ -12,3 +12,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef DISABLE_COMMON_TEST_H
#define DISABLE_COMMON_TEST_H
#endif
\ No newline at end of file
multimedia/media/media_cpp_test_standard/player/src/TestParamsConfig.cpp
浏览文件 @
7d6deff8
...
...
@@ -39,9 +39,10 @@ void TestParamsConfig::InitPlayProtocol()
{
MEDIA_INFO_LOG
(
"%s"
,
__FUNCTION__
);
char
protocol
[
PARA_MAX_LEN
]
=
"local"
;
GetParameter
(
"sys.media.test.play.protocol"
,
""
,
&
protocol
[
0
],
PARA_MAX_LEN
);
GetParameter
(
"sys.media.test.play.protocol"
,
"
local
"
,
&
protocol
[
0
],
PARA_MAX_LEN
);
if
(
strcmp
(
protocol
,
"local"
)
==
0
)
{
TestPlayerBasic
::
TestParamsConfig
::
GetInstance
().
SetMountPath
(
"file://data/media"
);
TestPlayerBasic
::
TestParamsConfig
::
GetInstance
().
SetMountPath
(
"file://data/media/"
);
MEDIA_INFO_LOG
(
"MOUNT_PATH %s"
,
TestPlayerBasic
::
TestParamsConfig
::
GetInstance
().
GetMountPath
().
c_str
());
}
}
...
...
multimedia/media/media_cpp_test_standard/player/src/TestPlayer.cpp
浏览文件 @
7d6deff8
...
...
@@ -14,14 +14,14 @@
* limitations under the License.
*/
#include "Test
p
layer.h"
#include "Test
P
layer.h"
#include "parameter.h"
#include "media_errors.h"
using
namespace
OHOS
;
using
namespace
OHOS
::
Media
;
TestPlayer
::
TestPlayer
(
PlayerSignal
*
test
)
TestPlayer
::
TestPlayer
(
std
::
shared_ptr
<
PlayerSignal
>
test
)
:
test_
(
test
)
{
}
...
...
@@ -248,7 +248,7 @@ int32_t TestPlayer::SetPlayerCallback(const std::shared_ptr<PlayerCallback> &cal
return
player_
->
SetPlayerCallback
(
callback
);
}
TestPlayerCallback
::
TestPlayerCallback
(
PlayerSignal
*
test
)
TestPlayerCallback
::
TestPlayerCallback
(
std
::
shared_ptr
<
PlayerSignal
>
test
)
:
test_
(
test
)
{
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录