Test.json 4.0 KB
Newer Older
G
gudehe 已提交
1 2 3 4
{
    "description": "Configuration for mediaLibrary Tests",
    "driver": {
        "type": "JSUnitTest",
P
panqiangbiao 已提交
5
        "test-timeout": "600000",
G
gudehe 已提交
6
        "package": "ohos.acts.multimedia.mediaLibrary",
P
panqiangbiao 已提交
7
        "shell-timeout": "600000"
G
gudehe 已提交
8 9 10 11 12 13 14
    },
    "kits": [
        {
            "type": "PushKit",
            "pre-push": [
            ],
            "push": [
G
gudehe 已提交
15 16
                "./resource/medialibrary/01.jpg ->/storage/media/100/local/files",
                "./resource/medialibrary/01.mp3 ->/storage/media/100/local/files",
P
panqiangbiao 已提交
17 18 19
                "./resource/medialibrary/01.mp4 ->/storage/media/100/local/files",
                "./resource/medialibrary/test.dat ->/storage/media/100/local/files",
                "./resource/medialibrary/test2.dat ->/storage/media/100/local/files"
G
gudehe 已提交
20 21 22 23 24
            ]
        },
        {
            "type": "ShellKit",
            "run-command": [
P
panqiangbiao 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
                "mkdir /storage/media/100/local/files/Pictures",
                "cp /storage/media/100/local/files/01.jpg /storage/media/100/local/files/Pictures/",
                "cp /storage/media/100/local/files/01.mp3 /storage/media/100/local/files/Pictures/",
                "cp /storage/media/100/local/files/01.mp4 /storage/media/100/local/files/Pictures/",
                "mkdir /storage/media/100/local/files/Pictures/weixin",
                "cp /storage/media/100/local/files/01.jpg /storage/media/100/local/files/Pictures/weixin",
                "cp /storage/media/100/local/files/01.mp3 /storage/media/100/local/files/Pictures/weixin",
                "cp /storage/media/100/local/files/01.mp4 /storage/media/100/local/files/Pictures/weixin",
                "mkdir /storage/media/100/local/files/Camera",
                "cp /storage/media/100/local/files/01.jpg /storage/media/100/local/files/Camera/01.jpg",
                "cp /storage/media/100/local/files/01.jpg /storage/media/100/local/files/Camera/02.jpg",
                "cp /storage/media/100/local/files/01.mp3 /storage/media/100/local/files/Camera/01.mp3",
                "cp /storage/media/100/local/files/01.mp3 /storage/media/100/local/files/Camera/02.mp3",
                "cp /storage/media/100/local/files/01.mp4 /storage/media/100/local/files/Camera/01.mp4",
                "cp /storage/media/100/local/files/01.mp4 /storage/media/100/local/files/Camera/02.mp4",
                "mkdir /storage/media/100/local/files/Documents",
                "cp /storage/media/100/local/files/test.dat /storage/media/100/local/files/Documents/test.dat",
                "cp /storage/media/100/local/files/test2.dat /storage/media/100/local/files/Documents/test2.dat",
P
panqiangbiao 已提交
43 44 45 46 47 48 49 50
                "mkdir /storage/media/100/local/files/Pictures/DeleteAlbumPro",
                "cp /storage/media/100/local/files/01.jpg /storage/media/100/local/files/Pictures/DeleteAlbumPro",
                "cp /storage/media/100/local/files/01.mp3 /storage/media/100/local/files/Pictures/DeleteAlbumPro",
                "cp /storage/media/100/local/files/01.mp4 /storage/media/100/local/files/Pictures/DeleteAlbumPro",
                "mkdir /storage/media/100/local/files/Pictures/DeleteAlbumCallback",
                "cp /storage/media/100/local/files/01.jpg /storage/media/100/local/files/Pictures/DeleteAlbumCallback",
                "cp /storage/media/100/local/files/01.mp3 /storage/media/100/local/files/Pictures/DeleteAlbumCallback",
                "cp /storage/media/100/local/files/01.mp4 /storage/media/100/local/files/Pictures/DeleteAlbumCallback",
G
gudehe 已提交
51
                "chmod -R 777 /storage/media/100/local/files/*",
P
panqiangbiao 已提交
52 53 54
                "chmod -R 777 /data/service/el2/100/hmdfs/account/files/*",
                "killall com.ohos.medialibrary.MediaScannerAbilityA",
                "aa start  -a MediaScannerAbility -b com.ohos.medialibrary.MediaScannerAbilityA"
G
gudehe 已提交
55 56
            ],
            "teardown-command":[
G
gudehe 已提交
57
                "rm -rf /storage/media/100/local/files/*"
G
gudehe 已提交
58 59 60 61
            ]
        },
        {
            "test-file-name": [
T
tongtongdad 已提交
62
                "ActsMediaLibraryJsTest.hap"
G
gudehe 已提交
63 64 65 66 67
            ],
            "type": "AppInstallKit",
            "cleanup-apps": true
        }
    ]
G
gudehe 已提交
68
}
P
panqiangbiao 已提交
69