Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
tp-qemu
提交
de8d9d39
T
tp-qemu
项目概览
openeuler
/
tp-qemu
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
tp-qemu
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
de8d9d39
编写于
11月 27, 2018
作者:
H
Haotong Chen
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
added a qemu-img map an unaligned image case
Signed-off-by:
N
Haotong Chen
<
hachen@redhat.com
>
上级
a06914c2
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
67 addition
and
0 deletion
+67
-0
qemu/tests/cfg/qemu_img_map_unaligned_image.cfg
qemu/tests/cfg/qemu_img_map_unaligned_image.cfg
+10
-0
qemu/tests/qemu_img_map_unaligned_image.py
qemu/tests/qemu_img_map_unaligned_image.py
+57
-0
未找到文件。
qemu/tests/cfg/qemu_img_map_unaligned_image.cfg
0 → 100644
浏览文件 @
de8d9d39
- qemu_img_map_unaligned_image:
only raw
virt_test_type = qemu
type = qemu_img_map_unaligned_image
kill_vm = yes
start_vm = no
images = "test"
image_size_test = 1G
image_name_test = images/unaligned_image
image_format_test = raw
qemu/tests/qemu_img_map_unaligned_image.py
0 → 100644
浏览文件 @
de8d9d39
import
logging
import
random
import
json
import
string
from
avocado.utils
import
process
from
virttest
import
data_dir
from
virttest.qemu_storage
import
QemuImg
def
run
(
test
,
params
,
env
):
"""
qemu-img map an unaligned image.
1.create a raw file using truncate
2.write data into the raw file
3.verify the dumped mete-data using qemu-img map
:param test: Qemu test object
:param params: Dictionary with the test parameters
:param env: Dictionary with test environment
"""
def
_generate_random_string
(
max_len
=
19
):
"""Generate random alphabets string in the range of [1, max_len+1]."""
random_str
=
''
.
join
(
random
.
choice
(
string
.
ascii_lowercase
)
for
_
in
range
(
random
.
randint
(
1
,
max_len
)))
return
random_str
,
len
(
random_str
)
def
_verify_qemu_img_map
(
output
,
str_len
):
"""Verify qemu-img map's output."""
logging
.
info
(
"Verify the dumped mete-data of the unaligned image."
)
expected
=
[{
"start"
:
0
,
"length"
:
str_len
,
"depth"
:
0
,
"zero"
:
False
,
"data"
:
True
,
"offset"
:
0
},
{
"start"
:
str_len
,
"length"
:
512
-
(
str_len
%
512
),
"depth"
:
0
,
"zero"
:
True
,
"data"
:
False
,
"offset"
:
str_len
}]
res
=
json
.
loads
(
output
)
if
res
!=
expected
:
test
.
fail
(
"The dumped mete-data of the unaligned "
"image '%s' is not correct."
%
img
.
image_filename
)
img_param
=
params
.
object_params
(
"test"
)
img
=
QemuImg
(
img_param
,
data_dir
.
get_data_dir
(),
"test"
)
logging
.
info
(
"Create a new file %s using truncate."
%
img
.
image_filename
)
process
.
run
(
"rm -f %s"
%
img
.
image_filename
)
process
.
run
(
"truncate -s 1G %s "
%
img
.
image_filename
)
random_str
,
str_len
=
_generate_random_string
()
logging
.
info
(
"Write '%s' into the file %s."
%
(
random_str
,
img
.
image_filename
))
process
.
run
(
"echo -n '%s' > %s"
%
(
random_str
,
img
.
image_filename
),
shell
=
True
)
res
=
img
.
map
(
output
=
"json"
)
if
res
.
exit_status
!=
0
:
test
.
fail
(
"qemu-img map error: %s."
%
res
.
stderr_text
)
_verify_qemu_img_map
(
res
.
stdout_text
,
str_len
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录