Test.json 2.8 KB
Newer Older
C
caochuan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
{
    "description": "Configuration for mediaLibrary Tests",
    "driver": {
        "type": "OHJSUnitTest",
        "test-timeout": "180000",
        "bundle-name": "ohos.acts.multimedia.mediaLibrary",
        "module-name": "phone",
        "shell-timeout": "600000",
        "testcase-timeout": 70000
    },
    "kits": [
        {
            "type": "ShellKit",
            "pre-push": [],
            "run-command": [
                "rm -rf /storage/media/100/local/files/*",
                "rm -rf /data/app/el2/100/database/com.ohos.medialibrary.MediaLibraryDataA/*",
                "mkdir -pv /storage/media/100/local/files/{Pictures,Videos,Audios}",
                "mkdir -p /storage/media/100/local/temp",
20 21
                "param set persist.sys.suspend_manager_enabled 0",
                "reboot",
22
                "param set persist.ace.testmode.enabled 1",
C
caochuan 已提交
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
                "power-shell wakeup",
                "uinput  -T -d 300 600 -m 300 600 300 100 -u 300 100",
                "power-shell setmode 602"
            ]
        },
        {
            "type": "PushKit",
            "pre-push": [],
            "push": [
                "./resource/medialibrary/01.jpg ->/storage/media/100/local/temp",
                "./resource/medialibrary/01.mp3 ->/storage/media/100/local/temp",
                "./resource/medialibrary/01.mp4 ->/storage/media/100/local/temp"
            ]
        },
        {
            "type": "ShellKit",
            "run-command": [
                "mkdir -pv /storage/media/100/local/files/Pictures/Thumbnail",
                "mkdir -pv /storage/media/100/local/files/Videos/Thumbnail",
                "mkdir -pv /storage/media/100/local/files/Audios/Thumbnail",
                "cp /storage/media/100/local/temp/01.jpg /storage/media/100/local/files/Pictures/Thumbnail",
                "cp /storage/media/100/local/temp/01.mp3 /storage/media/100/local/files/Audios/Thumbnail",
                "cp /storage/media/100/local/temp/01.mp4 /storage/media/100/local/files/Videos/Thumbnail",
                "chmod -R 777 /storage/media/100/local/files/*",
                "chmod -R 777 /data/service/el2/100/hmdfs/account/files/*",
                "hilog -Q pidoff",
                "hilog -p off",
                "hilog -b I",
                "hilog -b D -D 0xD002B70",
                "scanner",
                "sleep 10"
            ],
            "teardown-command": [
C
chenshuteng 已提交
56 57
                "param set persist.sys.suspend_manager_enabled 1",
                "reboot",
C
caochuan 已提交
58 59 60 61 62 63 64 65 66 67 68 69 70
                "hilog -b X -D 0xD002B70",
                "power-shell setmode 600"
            ]
        },
        {
            "test-file-name": [
                "ActsMediaLibraryGetThumbnailTest.hap"
            ],
            "type": "AppInstallKit",
            "cleanup-apps": true
        }
    ]
}