提交 2cfb4cb3 编写于 作者: O openharmony_ci 提交者: Gitee

!1271 【Distributeddatamgr】【LTS】接口用例修改

Merge pull request !1271 from Maowen/OpenHarmony-3.0-LTS
......@@ -352,10 +352,10 @@ describe('storageTest', function () {
*/
it('testFlush00181', 0, async function (done) {
mPref.putSync(KEY_TEST_STRING_ELEMENT, "test");
mPref.flushSync();
const promise = mPref.flush();
promise.then((ret) => {
expect("test").
assertEqual(mPref.getSync(KEY_TEST_STRING_ELEMENT, "default"));
expect("test").assertEqual(mPref.getSync(KEY_TEST_STRING_ELEMENT, "defaultvalue"));
}).catch((err) => {
expect(null).assertFail();
});
......@@ -369,6 +369,9 @@ describe('storageTest', function () {
* @tc.desc const test
*/
it('testConst001', 0, function () {
mPref = storage.getStorageSync(PATH);
console.info("testConstKEY " +MAX_KEY_LENHTH)
console.info("testConstVALUE " +MAX_VALUE_LENHTH)
expect("80").assertEqual(mPref.MAX_KEY_LENHTH);
expect("8192").assertEqual(mPref.MAX_VALUE_LENHTH);
})
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册