提交 3e0665b2 编写于 作者: L liangzhenyu123

用例优化,解决时区问题

Signed-off-by: Nliangzhenyu123 <liangzhenyu6@huawei.com>
上级 66e2ec29
...@@ -2023,17 +2023,17 @@ describe('SingleKvStorePromiseTest', function () { ...@@ -2023,17 +2023,17 @@ describe('SingleKvStorePromiseTest', function () {
* @tc.type: FUNC * @tc.type: FUNC
* @tc.name Test Js Api SingleKvStoreCommit testcase 001 * @tc.name Test Js Api SingleKvStoreCommit testcase 001
*/ */
it('SUB_DDM_DKV_SINGLEKVSTORE_STARTTRANSACTION_PROMISE_0100', 0, async function (done) { it('SUB_DDM_DKV_SINGLEKVSTORE_COMMIT_PROMISE_0100', 0, async function (done) {
console.info('SUB_DDM_DKV_SINGLEKVSTORE_STARTTRANSACTION_PROMISE_0100'); console.info('SUB_DDM_DKV_SINGLEKVSTORE_COMMIT_PROMISE_0100');
try { try {
await kvStore.commit(1).then(async (err) => { await kvStore.commit(1).then(async (err) => {
console.info('SUB_DDM_DKV_SINGLEKVSTORE_STARTTRANSACTION_PROMISE_0100 commit success'); console.info('SUB_DDM_DKV_SINGLEKVSTORE_COMMIT_PROMISE_0100 commit success');
expect(null).assertFail(); expect(null).assertFail();
}).catch((err) => { }).catch((err) => {
console.error('SUB_DDM_DKV_SINGLEKVSTORE_STARTTRANSACTION_PROMISE_0100 commit fail ' + `, error code is ${err.code}, message is ${err.message}`); console.error('SUB_DDM_DKV_SINGLEKVSTORE_COMMIT_PROMISE_0100 commit fail ' + `, error code is ${err.code}, message is ${err.message}`);
}); });
}catch(e) { }catch(e) {
console.error('SUB_DDM_DKV_SINGLEKVSTORE_STARTTRANSACTION_PROMISE_0100 e ' + `, error code is ${e.code}, message is ${e.message}`); console.error('SUB_DDM_DKV_SINGLEKVSTORE_COMMIT_PROMISE_0100 e ' + `, error code is ${e.code}, message is ${e.message}`);
} }
done(); done();
}) })
......
...@@ -410,7 +410,6 @@ describe('preferencesV9CallbackTest', async function () { ...@@ -410,7 +410,6 @@ describe('preferencesV9CallbackTest', async function () {
try { try {
var observer = function (key) { var observer = function (key) {
console.info('SUB_DDM_JSPREFERENCEV9_CALLBACK_1600 key' + key); console.info('SUB_DDM_JSPREFERENCEV9_CALLBACK_1600 key' + key);
expect(false).assertTrue()
}; };
mPreference.on('change', observer); mPreference.on('change', observer);
mPreference.off('change', observer); mPreference.off('change', observer);
......
...@@ -410,7 +410,6 @@ describe('preferencesV9PromiseTest', async function () { ...@@ -410,7 +410,6 @@ describe('preferencesV9PromiseTest', async function () {
try { try {
var observer = function (key) { var observer = function (key) {
console.info('SUB_DDM_JSPREFERENCEV9_PROMISE_1600 key' + key); console.info('SUB_DDM_JSPREFERENCEV9_PROMISE_1600 key' + key);
expect(false).assertTrue()
}; };
mPreference.on('change', observer); mPreference.on('change', observer);
mPreference.off('change', observer); mPreference.off('change', observer);
......
...@@ -68,8 +68,8 @@ describe('rdbStorePredicatesComplexFiledTest', function () { ...@@ -68,8 +68,8 @@ describe('rdbStorePredicatesComplexFiledTest', function () {
console.log(TAG + "************* SUB_DDM_AppDataFWK_JSRDB_Predicates_ComplexFiled_0001 start *************"); console.log(TAG + "************* SUB_DDM_AppDataFWK_JSRDB_Predicates_ComplexFiled_0001 start *************");
let predicates = await new dataRdb.RdbPredicates("test") let predicates = await new dataRdb.RdbPredicates("test")
predicates.groupBy(["DATE(test.adddate,'utc')"]).orderByAsc("COUNT(*)") predicates.groupBy(["DATE(test.adddate)"]).orderByAsc("COUNT(*)")
let resultSet = await rdbStore.query(predicates, ["COUNT(*) AS 'num Count'", "DATE(test.adddate,'utc') as birthday"]) let resultSet = await rdbStore.query(predicates, ["COUNT(*) AS 'num Count'", "DATE(test.adddate) as birthday"])
expect(true).assertEqual(resultSet.goToFirstRow()) expect(true).assertEqual(resultSet.goToFirstRow())
let count = await resultSet.getLong(resultSet.getColumnIndex("num Count")) let count = await resultSet.getLong(resultSet.getColumnIndex("num Count"))
let birthday = await resultSet.getString(resultSet.getColumnIndex("birthday")) let birthday = await resultSet.getString(resultSet.getColumnIndex("birthday"))
...@@ -94,8 +94,8 @@ describe('rdbStorePredicatesComplexFiledTest', function () { ...@@ -94,8 +94,8 @@ describe('rdbStorePredicatesComplexFiledTest', function () {
console.log(TAG + "************* SUB_DDM_AppDataFWK_JSRDB_Predicates_ComplexFiled_0002 start *************"); console.log(TAG + "************* SUB_DDM_AppDataFWK_JSRDB_Predicates_ComplexFiled_0002 start *************");
let predicates = await new dataRdb.RdbPredicates("test") let predicates = await new dataRdb.RdbPredicates("test")
predicates.groupBy(["DATE(test.adddate,'utc')"]).orderByDesc("COUNT(*)") predicates.groupBy(["DATE(test.adddate)"]).orderByDesc("COUNT(*)")
let resultSet = await rdbStore.query(predicates, ["COUNT(*) AS numCount", "DATE(test.adddate,'utc') as birthday"]) let resultSet = await rdbStore.query(predicates, ["COUNT(*) AS numCount", "DATE(test.adddate) as birthday"])
expect(true).assertEqual(resultSet.goToFirstRow()) expect(true).assertEqual(resultSet.goToFirstRow())
let count = await resultSet.getLong(resultSet.getColumnIndex("numCount")) let count = await resultSet.getLong(resultSet.getColumnIndex("numCount"))
let birthday = await resultSet.getString(resultSet.getColumnIndex("birthday")) let birthday = await resultSet.getString(resultSet.getColumnIndex("birthday"))
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册