提交 32e5ee0b 编写于 作者: 1 15829070344

【账号】setCustomData接口覆盖

Signed-off-by: N15829070344 <hehaitao5@huawei.com>
Change-Id: I54e2d3a6ea2af6d1143ffda5a6d61d37f2fc4460
上级 e068ef4b
...@@ -44,8 +44,8 @@ export default function ActsAccountCustomData() { ...@@ -44,8 +44,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_0100 * @tc.number : ActsAccountCustomData_0100
* @tc.name : The correct calls setAssociatedData and getCustomData get the value * @tc.name : The correct calls setCustomData and getCustomData get the value
* @tc.desc : The setAssociatedData setting valueis called when the forwarding parameters * @tc.desc : The setCustomData setting valueis called when the forwarding parameters
* are correct, and then getCustomData is called for the value(callback) * are correct, and then getCustomData is called for the value(callback)
*/ */
it('ActsAccountCustomData_0100', 0, async function (done) { it('ActsAccountCustomData_0100', 0, async function (done) {
...@@ -55,8 +55,8 @@ export default function ActsAccountCustomData() { ...@@ -55,8 +55,8 @@ export default function ActsAccountCustomData() {
appAccountManager.createAccount("account_name_0100",(err)=>{ appAccountManager.createAccount("account_name_0100",(err)=>{
console.debug("====>add accountActsAccountCustomData_0100 err:" + JSON.stringify(err)); console.debug("====>add accountActsAccountCustomData_0100 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
appAccountManager.setAssociatedData("account_name_0100", "key1", "value1", (err)=>{ appAccountManager.setCustomData("account_name_0100", "key1", "value1", (err)=>{
console.debug("====>setAssociatedData ActsAccountCustomData_0100 err:" + JSON.stringify(err)); console.debug("====>setCustomData ActsAccountCustomData_0100 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
appAccountManager.getCustomData("account_name_0100", "key1", (err, data)=>{ appAccountManager.getCustomData("account_name_0100", "key1", (err, data)=>{
console.debug("====>getCustomData 0100 err:" + JSON.stringify(err)); console.debug("====>getCustomData 0100 err:" + JSON.stringify(err));
...@@ -76,8 +76,8 @@ export default function ActsAccountCustomData() { ...@@ -76,8 +76,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_0200 * @tc.number : ActsAccountCustomData_0200
* @tc.name : The correct calls setAssociatedData and getCustomData get the value * @tc.name : The correct calls setCustomData and getCustomData get the value
* @tc.desc : The setAssociatedData setting value is called when the forwarding parameters * @tc.desc : The setCustomData setting value is called when the forwarding parameters
* are correct, and then getCustomData is called for the value(promise) * are correct, and then getCustomData is called for the value(promise)
*/ */
it('ActsAccountCustomData_0200', 0, async function (done) { it('ActsAccountCustomData_0200', 0, async function (done) {
...@@ -93,12 +93,12 @@ export default function ActsAccountCustomData() { ...@@ -93,12 +93,12 @@ export default function ActsAccountCustomData() {
expect().assertFail(); expect().assertFail();
done(); done();
} }
console.debug("====>setAssociatedData ActsAccountCustomData_0200 start===="); console.debug("====>setCustomData ActsAccountCustomData_0200 start====");
try{ try{
await appAccountManager.setAssociatedData("account_name_0200", "key2", "value2"); await appAccountManager.setCustomData("account_name_0200", "key2", "value2");
} }
catch(err){ catch(err){
console.error("====>setAssociatedData ActsAccountCustomData_0200 err:" + JSON.stringify(err)); console.error("====>setCustomData ActsAccountCustomData_0200 err:" + JSON.stringify(err));
expect().assertFail(); expect().assertFail();
done(); done();
} }
...@@ -129,7 +129,7 @@ export default function ActsAccountCustomData() { ...@@ -129,7 +129,7 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_0300 * @tc.number : ActsAccountCustomData_0300
* @tc.name : Get it directly without setting value * @tc.name : Get it directly without setting value
* @tc.desc : Call getCustomData directly to get value without calling setAssociatedData(callback) * @tc.desc : Call getCustomData directly to get value without calling setCustomData(callback)
*/ */
it('ActsAccountCustomData_0300', 0, async function (done) { it('ActsAccountCustomData_0300', 0, async function (done) {
console.debug("====>ActsAccountCustomData_0300 start===="); console.debug("====>ActsAccountCustomData_0300 start====");
...@@ -156,7 +156,7 @@ export default function ActsAccountCustomData() { ...@@ -156,7 +156,7 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_0400 * @tc.number : ActsAccountCustomData_0400
* @tc.name : Get it directly without setting value * @tc.name : Get it directly without setting value
* @tc.desc : Call getCustomData directly to get value without calling setAssociatedData(promise) * @tc.desc : Call getCustomData directly to get value without calling setCustomData(promise)
*/ */
it('ActsAccountCustomData_0400', 0, async function (done) { it('ActsAccountCustomData_0400', 0, async function (done) {
console.debug("====>ActsAccountCustomData_0400 start===="); console.debug("====>ActsAccountCustomData_0400 start====");
...@@ -197,7 +197,7 @@ export default function ActsAccountCustomData() { ...@@ -197,7 +197,7 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_0500 * @tc.number : ActsAccountCustomData_0500
* @tc.name : Call getCustomData to get value when passing in the error parameter * @tc.name : Call getCustomData to get value when passing in the error parameter
* @tc.desc : After calling setAssociatedData setting value correctly, * @tc.desc : After calling setCustomData setting value correctly,
* call the getCustomData of the pass error to check if you get the value(callback) * call the getCustomData of the pass error to check if you get the value(callback)
*/ */
it('ActsAccountCustomData_0500', 0, async function (done) { it('ActsAccountCustomData_0500', 0, async function (done) {
...@@ -207,8 +207,8 @@ export default function ActsAccountCustomData() { ...@@ -207,8 +207,8 @@ export default function ActsAccountCustomData() {
appAccountManager.createAccount("account_name_0500",(err)=>{ appAccountManager.createAccount("account_name_0500",(err)=>{
console.debug("====>add account ActsAccountCustomData_0500 err:" + JSON.stringify(err)); console.debug("====>add account ActsAccountCustomData_0500 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
appAccountManager.setAssociatedData("account_name_0500", "key5", "value5", (err)=>{ appAccountManager.setCustomData("account_name_0500", "key5", "value5", (err)=>{
console.debug("====>setAssociatedData ActsAccountCustomData_0500 err:" + JSON.stringify(err)); console.debug("====>setCustomData ActsAccountCustomData_0500 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
appAccountManager.getCustomData("account_name_0500", "keyerr", (err, data)=>{ appAccountManager.getCustomData("account_name_0500", "keyerr", (err, data)=>{
console.debug("====>getCustomData 0500 err:" + JSON.stringify(err)); console.debug("====>getCustomData 0500 err:" + JSON.stringify(err));
...@@ -228,7 +228,7 @@ export default function ActsAccountCustomData() { ...@@ -228,7 +228,7 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_0600 * @tc.number : ActsAccountCustomData_0600
* @tc.name : Call getCustomData to get value when passing in the error parameter * @tc.name : Call getCustomData to get value when passing in the error parameter
* @tc.desc : After calling setAssociatedData setting value correctly, * @tc.desc : After calling setCustomData setting value correctly,
* call the getCustomData of the pass error to check if you get the value(promise) * call the getCustomData of the pass error to check if you get the value(promise)
*/ */
it('ActsAccountCustomData_0600', 0, async function (done) { it('ActsAccountCustomData_0600', 0, async function (done) {
...@@ -244,7 +244,7 @@ export default function ActsAccountCustomData() { ...@@ -244,7 +244,7 @@ export default function ActsAccountCustomData() {
expect().assertFail(); expect().assertFail();
done(); done();
} }
await appAccountManager.setAssociatedData("account_name_0600", "key6", "value6"); await appAccountManager.setCustomData("account_name_0600", "key6", "value6");
try{ try{
var data = await appAccountManager.getCustomData("account_name_0600", "keyerr"); var data = await appAccountManager.getCustomData("account_name_0600", "keyerr");
} }
...@@ -267,8 +267,8 @@ export default function ActsAccountCustomData() { ...@@ -267,8 +267,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_0700 * @tc.number : ActsAccountCustomData_0700
* @tc.name : Whether getCustomData can get the correct value when calling setAssociatedData multiple times * @tc.name : Whether getCustomData can get the correct value when calling setCustomData multiple times
* @tc.desc : When the first setAssociatedData is called and the second setAssociatedData * @tc.desc : When the first setCustomData is called and the second setCustomData
* is called,the setting of the value is different if the call getCustomData * is called,the setting of the value is different if the call getCustomData
* can get the second value(callback) * can get the second value(callback)
*/ */
...@@ -279,11 +279,11 @@ export default function ActsAccountCustomData() { ...@@ -279,11 +279,11 @@ export default function ActsAccountCustomData() {
appAccountManager.createAccount("account_name_0700",(err)=>{ appAccountManager.createAccount("account_name_0700",(err)=>{
console.debug("====>add account ActsAccountCustomData_0700 err:" + JSON.stringify(err)); console.debug("====>add account ActsAccountCustomData_0700 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
appAccountManager.setAssociatedData("account_name_0700", "key7", "value7", (err)=>{ appAccountManager.setCustomData("account_name_0700", "key7", "value7", (err)=>{
console.debug("====>setAssociatedDatafir first time 0700 err:" + JSON.stringify(err)); console.debug("====>setCustomDatafir first time 0700 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
appAccountManager.setAssociatedData("account_name_0700", "key7", "newvalue7", (err)=>{ appAccountManager.setCustomData("account_name_0700", "key7", "newvalue7", (err)=>{
console.debug("====>setAssociatedDatafir second time 0700 err:" + JSON.stringify(err)); console.debug("====>setCustomDatafir second time 0700 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
appAccountManager.getCustomData("account_name_0700", "key7", (err, data)=>{ appAccountManager.getCustomData("account_name_0700", "key7", (err, data)=>{
console.debug("====>getCustomData 0700 err:" + JSON.stringify(err)); console.debug("====>getCustomData 0700 err:" + JSON.stringify(err));
...@@ -304,8 +304,8 @@ export default function ActsAccountCustomData() { ...@@ -304,8 +304,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_0800 * @tc.number : ActsAccountCustomData_0800
* @tc.name : Whether getCustomData can get the correct value when calling setAssociatedData multiple times * @tc.name : Whether getCustomData can get the correct value when calling setCustomData multiple times
* @tc.desc : When the first setAssociatedData is called and the second setAssociatedData * @tc.desc : When the first setCustomData is called and the second setCustomData
* is called,the setting of the value is different if the call getCustomData * is called,the setting of the value is different if the call getCustomData
* can get the second value(promise) * can get the second value(promise)
*/ */
...@@ -322,10 +322,10 @@ export default function ActsAccountCustomData() { ...@@ -322,10 +322,10 @@ export default function ActsAccountCustomData() {
done(); done();
} }
try{ try{
await appAccountManager.setAssociatedData("account_name_0800","key8","value8"); await appAccountManager.setCustomData("account_name_0800","key8","value8");
await appAccountManager.setAssociatedData("account_name_0800","key8","newvalue8"); await appAccountManager.setCustomData("account_name_0800","key8","newvalue8");
}catch(err){ }catch(err){
console.error("====>setAssociatedData ActsAccountCustomData_0800 err:" + JSON.stringify(err)); console.error("====>setCustomData ActsAccountCustomData_0800 err:" + JSON.stringify(err));
expect().assertFail(); expect().assertFail();
done(); done();
} }
...@@ -354,8 +354,8 @@ export default function ActsAccountCustomData() { ...@@ -354,8 +354,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_0900 * @tc.number : ActsAccountCustomData_0900
* @tc.name : Whether getCustomData can get the correct value when calling setAssociatedData multiple times * @tc.name : Whether getCustomData can get the correct value when calling setCustomData multiple times
* @tc.desc : When the first setAssociatedData is called and the second setAssociatedData * @tc.desc : When the first setCustomData is called and the second setCustomData
* is called,the setting of the value is same if the call getCustomData * is called,the setting of the value is same if the call getCustomData
* can get the second value(callback) * can get the second value(callback)
*/ */
...@@ -366,11 +366,11 @@ export default function ActsAccountCustomData() { ...@@ -366,11 +366,11 @@ export default function ActsAccountCustomData() {
appAccountManager.createAccount("account_name_0900",(err)=>{ appAccountManager.createAccount("account_name_0900",(err)=>{
console.debug("====>add account ActsAccountCustomData_0900 err:" + JSON.stringify(err)); console.debug("====>add account ActsAccountCustomData_0900 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
appAccountManager.setAssociatedData("account_name_0900", "key9", "value9", (err)=>{ appAccountManager.setCustomData("account_name_0900", "key9", "value9", (err)=>{
console.debug("====>setAssociatedData first time 0900 err:" + JSON.stringify(err)); console.debug("====>setCustomData first time 0900 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
appAccountManager.setAssociatedData("account_name_0900", "key9", "value9", (err)=>{ appAccountManager.setCustomData("account_name_0900", "key9", "value9", (err)=>{
console.debug("====>setAssociatedData second time 0900 err:" + JSON.stringify(err)); console.debug("====>setCustomData second time 0900 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
appAccountManager.getCustomData("account_name_0900", "key9", (err, data)=>{ appAccountManager.getCustomData("account_name_0900", "key9", (err, data)=>{
console.debug("====>getCustomData 0900 err:" + JSON.stringify(err)); console.debug("====>getCustomData 0900 err:" + JSON.stringify(err));
...@@ -391,8 +391,8 @@ export default function ActsAccountCustomData() { ...@@ -391,8 +391,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_1000 * @tc.number : ActsAccountCustomData_1000
* @tc.name : Whether getCustomData can get the correct value when calling setAssociatedData multiple times * @tc.name : Whether getCustomData can get the correct value when calling setCustomData multiple times
* @tc.desc : When the first setAssociatedData is called and the second setAssociatedData * @tc.desc : When the first setCustomData is called and the second setCustomData
* is called,the setting of the value is same if the call getCustomData * is called,the setting of the value is same if the call getCustomData
* can get the second value(promise) * can get the second value(promise)
*/ */
...@@ -410,11 +410,11 @@ export default function ActsAccountCustomData() { ...@@ -410,11 +410,11 @@ export default function ActsAccountCustomData() {
done(); done();
} }
try{ try{
await appAccountManager.setAssociatedData("account_name_1000", "key10", "value10"); await appAccountManager.setCustomData("account_name_1000", "key10", "value10");
await appAccountManager.setAssociatedData("account_name_1000", "key10", "value10"); await appAccountManager.setCustomData("account_name_1000", "key10", "value10");
} }
catch(err){ catch(err){
console.error("====>setAssociatedData ActsAccountCustomData_1000 err:" + JSON.stringify(err)); console.error("====>setCustomData ActsAccountCustomData_1000 err:" + JSON.stringify(err));
expect().assertFail(); expect().assertFail();
done(); done();
} }
...@@ -443,8 +443,8 @@ export default function ActsAccountCustomData() { ...@@ -443,8 +443,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_1100 * @tc.number : ActsAccountCustomData_1100
* @tc.name : Call multiple setAssociatedData calls multiple times getCustomData gets the value separately * @tc.name : Call multiple setCustomData calls multiple times getCustomData gets the value separately
* @tc.desc : Call setAssociatedData setting value again after calling setAssociatedData setting * @tc.desc : Call setCustomData setting value again after calling setCustomData setting
* different value, and then call getCustomData twice to get the set value(callback) * different value, and then call getCustomData twice to get the set value(callback)
*/ */
it('ActsAccountCustomData_1100', 0, async function (done) { it('ActsAccountCustomData_1100', 0, async function (done) {
...@@ -454,11 +454,11 @@ export default function ActsAccountCustomData() { ...@@ -454,11 +454,11 @@ export default function ActsAccountCustomData() {
appAccountManager.createAccount("account_name_1100",(err)=>{ appAccountManager.createAccount("account_name_1100",(err)=>{
console.debug("====>add account ActsAccountCustomData_1100 err:" + JSON.stringify(err)); console.debug("====>add account ActsAccountCustomData_1100 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
appAccountManager.setAssociatedData("account_name_1100", "key11_first", "value11_first", (err)=>{ appAccountManager.setCustomData("account_name_1100", "key11_first", "value11_first", (err)=>{
console.debug("====>setAssociatedData first time 1100 err:" + JSON.stringify(err)); console.debug("====>setCustomData first time 1100 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
appAccountManager.setAssociatedData("account_name_1100", "key11_second", "value11_second", (err)=>{ appAccountManager.setCustomData("account_name_1100", "key11_second", "value11_second", (err)=>{
console.debug("====>setAssociatedData second time 1100 err:" + JSON.stringify(err)); console.debug("====>setCustomData second time 1100 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
appAccountManager.getCustomData("account_name_1100", "key11_first", (err,data)=>{ appAccountManager.getCustomData("account_name_1100", "key11_first", (err,data)=>{
console.debug("====>getCustomData key11_first 1100 err:" + JSON.stringify(err)); console.debug("====>getCustomData key11_first 1100 err:" + JSON.stringify(err));
...@@ -484,8 +484,8 @@ export default function ActsAccountCustomData() { ...@@ -484,8 +484,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_1200 * @tc.number : ActsAccountCustomData_1200
* @tc.name : Call multiple setAssociatedData calls multiple times getCustomData gets the value separately * @tc.name : Call multiple setCustomData calls multiple times getCustomData gets the value separately
* @tc.desc : Call setAssociatedData setting value again after calling setAssociatedData setting * @tc.desc : Call setCustomData setting value again after calling setCustomData setting
* different value, and then call getCustomData twice to get the set value(promise) * different value, and then call getCustomData twice to get the set value(promise)
*/ */
it('ActsAccountCustomData_1200', 0, async function (done) { it('ActsAccountCustomData_1200', 0, async function (done) {
...@@ -502,11 +502,11 @@ export default function ActsAccountCustomData() { ...@@ -502,11 +502,11 @@ export default function ActsAccountCustomData() {
done(); done();
} }
try{ try{
await appAccountManager.setAssociatedData("account_name_1200", "key12_first", "value12_first"); await appAccountManager.setCustomData("account_name_1200", "key12_first", "value12_first");
await appAccountManager.setAssociatedData("account_name_1200", "key12_second", "value12_second"); await appAccountManager.setCustomData("account_name_1200", "key12_second", "value12_second");
} }
catch(err){ catch(err){
console.error("====>setAssociatedData ActsAccountCustomData_1200 err:" + JSON.stringify(err)); console.error("====>setCustomData ActsAccountCustomData_1200 err:" + JSON.stringify(err));
expect().assertFail(); expect().assertFail();
done(); done();
} }
...@@ -538,8 +538,8 @@ export default function ActsAccountCustomData() { ...@@ -538,8 +538,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_1300 * @tc.number : ActsAccountCustomData_1300
* @tc.name : setAssociatedData setting value is called when the argument is wrong * @tc.name : setCustomData setting value is called when the argument is wrong
* @tc.desc : Call setAssociatedData setting value when the incoming parameter KEY is wrong(callback) * @tc.desc : Call setCustomData setting value when the incoming parameter KEY is wrong(callback)
*/ */
it('ActsAccountCustomData_1300', 0, async function (done) { it('ActsAccountCustomData_1300', 0, async function (done) {
console.debug("====>ActsAccountCustomData_1300 start===="); console.debug("====>ActsAccountCustomData_1300 start====");
...@@ -548,8 +548,8 @@ export default function ActsAccountCustomData() { ...@@ -548,8 +548,8 @@ export default function ActsAccountCustomData() {
appAccountManager.createAccount("account_name_1300", (err)=>{ appAccountManager.createAccount("account_name_1300", (err)=>{
console.debug("====>add account ActsAccountCustomData_1300 err:" + JSON.stringify(err)); console.debug("====>add account ActsAccountCustomData_1300 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
appAccountManager.setAssociatedData("account_name_1300", "", "value13", (err)=>{ appAccountManager.setCustomData("account_name_1300", "", "value13", (err)=>{
console.debug("====>setAssociatedData ActsAccountCustomData_1300 err:" + JSON.stringify(err)); console.debug("====>setCustomData ActsAccountCustomData_1300 err:" + JSON.stringify(err));
expect(err.code != 0).assertEqual(true); expect(err.code != 0).assertEqual(true);
appAccountManager.removeAccount("account_name_1300", (err)=>{ appAccountManager.removeAccount("account_name_1300", (err)=>{
console.debug("====>delete account ActsAccountCustomData_1300 err:" + JSON.stringify(err)); console.debug("====>delete account ActsAccountCustomData_1300 err:" + JSON.stringify(err));
...@@ -563,8 +563,8 @@ export default function ActsAccountCustomData() { ...@@ -563,8 +563,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_1400 * @tc.number : ActsAccountCustomData_1400
* @tc.name : setAssociatedData setting value is called when the argument is wrong * @tc.name : setCustomData setting value is called when the argument is wrong
* @tc.desc : Call setAssociatedData setting value when the incoming parameter KEY is wrong(promise) * @tc.desc : Call setCustomData setting value when the incoming parameter KEY is wrong(promise)
*/ */
it('ActsAccountCustomData_1400', 0, async function (done) { it('ActsAccountCustomData_1400', 0, async function (done) {
console.debug("====>ActsAccountCustomData_1400 start===="); console.debug("====>ActsAccountCustomData_1400 start====");
...@@ -580,10 +580,10 @@ export default function ActsAccountCustomData() { ...@@ -580,10 +580,10 @@ export default function ActsAccountCustomData() {
done(); done();
} }
try{ try{
await appAccountManager.setAssociatedData("account_name_1400", "", "value14"); await appAccountManager.setCustomData("account_name_1400", "", "value14");
} }
catch(err){ catch(err){
console.debug("====>setAssociatedData ActsAccountCustomData_1400 err:" + JSON.stringify(err)); console.debug("====>setCustomData ActsAccountCustomData_1400 err:" + JSON.stringify(err));
expect(err.code != 0).assertEqual(true); expect(err.code != 0).assertEqual(true);
console.debug("====>delete account ActsAccountCustomData_1400 start===="); console.debug("====>delete account ActsAccountCustomData_1400 start====");
try{ try{
...@@ -601,8 +601,8 @@ export default function ActsAccountCustomData() { ...@@ -601,8 +601,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_1500 * @tc.number : ActsAccountCustomData_1500
* @tc.name : setAssociatedData setting key is called when the argument is wrong * @tc.name : setCustomData setting key is called when the argument is wrong
* @tc.desc : Call setAssociatedData setting key when the incoming parameter KEY is wrong(callback) * @tc.desc : Call setCustomData setting key when the incoming parameter KEY is wrong(callback)
*/ */
it('ActsAccountCustomData_1500', 0, async function (done) { it('ActsAccountCustomData_1500', 0, async function (done) {
console.debug("====>ActsAccountCustomData_1500 start===="); console.debug("====>ActsAccountCustomData_1500 start====");
...@@ -616,8 +616,8 @@ export default function ActsAccountCustomData() { ...@@ -616,8 +616,8 @@ export default function ActsAccountCustomData() {
expect(err).assertEqual(null); expect(err).assertEqual(null);
console.debug("====>1500 keyOverSize.length:" + JSON.stringify(keyOverSize.length)); console.debug("====>1500 keyOverSize.length:" + JSON.stringify(keyOverSize.length));
expect(keyOverSize.length).assertEqual(1025); expect(keyOverSize.length).assertEqual(1025);
appAccountManager.setAssociatedData("account_name_1500", keyOverSize, "value15", (err)=>{ appAccountManager.setCustomData("account_name_1500", keyOverSize, "value15", (err)=>{
console.debug("====>setAssociatedData ActsAccountCustomData_1500 err:" + JSON.stringify(err)); console.debug("====>setCustomData ActsAccountCustomData_1500 err:" + JSON.stringify(err));
expect(err.code != 0).assertEqual(true); expect(err.code != 0).assertEqual(true);
appAccountManager.removeAccount("account_name_1500", (err)=>{ appAccountManager.removeAccount("account_name_1500", (err)=>{
console.debug("====>delete account ActsAccountCustomData_1500 err:" + JSON.stringify(err)); console.debug("====>delete account ActsAccountCustomData_1500 err:" + JSON.stringify(err));
...@@ -631,8 +631,8 @@ export default function ActsAccountCustomData() { ...@@ -631,8 +631,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_1600 * @tc.number : ActsAccountCustomData_1600
* @tc.name : setAssociatedData setting key is called when the argument is wrong * @tc.name : setCustomData setting key is called when the argument is wrong
* @tc.desc : Call setAssociatedData setting key when the incoming parameter KEY is wrong(promise) * @tc.desc : Call setCustomData setting key when the incoming parameter KEY is wrong(promise)
*/ */
it('ActsAccountCustomData_1600', 0, async function (done) { it('ActsAccountCustomData_1600', 0, async function (done) {
console.debug("====>ActsAccountCustomData_1600 start===="); console.debug("====>ActsAccountCustomData_1600 start====");
...@@ -652,10 +652,10 @@ export default function ActsAccountCustomData() { ...@@ -652,10 +652,10 @@ export default function ActsAccountCustomData() {
done(); done();
} }
try{ try{
await appAccountManager.setAssociatedData("account_name_1600", keyOverSize, "value16"); await appAccountManager.setCustomData("account_name_1600", keyOverSize, "value16");
} }
catch(err){ catch(err){
console.debug("====>setAssociatedData ActsAccountCustomData_1600 err:" + JSON.stringify(err)); console.debug("====>setCustomData ActsAccountCustomData_1600 err:" + JSON.stringify(err));
expect(err.code != 0).assertEqual(true); expect(err.code != 0).assertEqual(true);
console.debug("====>delete account ActsAccountCustomData_1600 start===="); console.debug("====>delete account ActsAccountCustomData_1600 start====");
try{ try{
...@@ -673,8 +673,8 @@ export default function ActsAccountCustomData() { ...@@ -673,8 +673,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_1700 * @tc.number : ActsAccountCustomData_1700
* @tc.name : setAssociatedData and getCustomData are called when the argument is spaced * @tc.name : setCustomData and getCustomData are called when the argument is spaced
* @tc.desc : Call setAssociatedData and then getCustomData when the incoming key is a space(callback) * @tc.desc : Call setCustomData and then getCustomData when the incoming key is a space(callback)
*/ */
it('ActsAccountCustomData_1700', 0, async function (done) { it('ActsAccountCustomData_1700', 0, async function (done) {
console.debug("====>ActsAccountCustomData_1700 start===="); console.debug("====>ActsAccountCustomData_1700 start====");
...@@ -683,8 +683,8 @@ export default function ActsAccountCustomData() { ...@@ -683,8 +683,8 @@ export default function ActsAccountCustomData() {
appAccountManager.createAccount("account_name_1700", (err)=>{ appAccountManager.createAccount("account_name_1700", (err)=>{
console.debug("====>add account ActsAccountCustomData_1700 err:" + JSON.stringify(err)); console.debug("====>add account ActsAccountCustomData_1700 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
appAccountManager.setAssociatedData("account_name_1700", " ", "value17", (err)=>{ appAccountManager.setCustomData("account_name_1700", " ", "value17", (err)=>{
console.debug("====>ActsAccountCustomData_1700 setAssociatedData:" + JSON.stringify(err)); console.debug("====>ActsAccountCustomData_1700 setCustomData:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
appAccountManager.getCustomData("account_name_1700", " ", (err, data)=>{ appAccountManager.getCustomData("account_name_1700", " ", (err, data)=>{
console.debug("====>getCustomData 1700 err:" + JSON.stringify(err)); console.debug("====>getCustomData 1700 err:" + JSON.stringify(err));
...@@ -704,8 +704,8 @@ export default function ActsAccountCustomData() { ...@@ -704,8 +704,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_1800 * @tc.number : ActsAccountCustomData_1800
* @tc.name : setAssociatedData and getCustomData are called when the argument is spaced * @tc.name : setCustomData and getCustomData are called when the argument is spaced
* @tc.desc : Call setAssociatedData and then getCustomData when the incoming key is a space(promise) * @tc.desc : Call setCustomData and then getCustomData when the incoming key is a space(promise)
*/ */
it('ActsAccountCustomData_1800', 0, async function (done) { it('ActsAccountCustomData_1800', 0, async function (done) {
console.debug("====>ActsAccountCustomData_1800 start===="); console.debug("====>ActsAccountCustomData_1800 start====");
...@@ -720,12 +720,12 @@ export default function ActsAccountCustomData() { ...@@ -720,12 +720,12 @@ export default function ActsAccountCustomData() {
expect().assertFail(); expect().assertFail();
done(); done();
} }
await appAccountManager.setAssociatedData("account_name_1800", " ", "value18"); await appAccountManager.setCustomData("account_name_1800", " ", "value18");
try{ try{
var data = await appAccountManager.getCustomData("account_name_1800", " "); var data = await appAccountManager.getCustomData("account_name_1800", " ");
} }
catch(err){ catch(err){
console.error("====>setAssociatedData ActsAccountCustomData_1800 fail err:" + JSON.stringify(err)); console.error("====>setCustomData ActsAccountCustomData_1800 fail err:" + JSON.stringify(err));
expect().assertFail(); expect().assertFail();
done(); done();
} }
...@@ -746,8 +746,8 @@ export default function ActsAccountCustomData() { ...@@ -746,8 +746,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_1900 * @tc.number : ActsAccountCustomData_1900
* @tc.name : setAssociatedData and getCustomData are called when the argument is spaced * @tc.name : setCustomData and getCustomData are called when the argument is spaced
* @tc.desc : Call setAssociatedData and then getCustomData when the incoming value is null(callback) * @tc.desc : Call setCustomData and then getCustomData when the incoming value is null(callback)
*/ */
it('ActsAccountCustomData_1900', 0, async function (done) { it('ActsAccountCustomData_1900', 0, async function (done) {
console.debug("====>ActsAccountCustomData_1900 start===="); console.debug("====>ActsAccountCustomData_1900 start====");
...@@ -756,8 +756,8 @@ export default function ActsAccountCustomData() { ...@@ -756,8 +756,8 @@ export default function ActsAccountCustomData() {
appAccountManager.createAccount("account_name_1900", (err)=>{ appAccountManager.createAccount("account_name_1900", (err)=>{
console.debug("====>add account ActsAccountCustomData_1900 err:" + JSON.stringify(err)); console.debug("====>add account ActsAccountCustomData_1900 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
appAccountManager.setAssociatedData("account_name_1900", "key19", "", (err)=>{ appAccountManager.setCustomData("account_name_1900", "key19", "", (err)=>{
console.debug("====>setAssociatedData ActsAccountCustomData_1900 err:" + JSON.stringify(err)); console.debug("====>setCustomData ActsAccountCustomData_1900 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
appAccountManager.getCustomData("account_name_1900", "key19", (err, data)=>{ appAccountManager.getCustomData("account_name_1900", "key19", (err, data)=>{
console.debug("====>getCustomData 1900 err:" + JSON.stringify(err)); console.debug("====>getCustomData 1900 err:" + JSON.stringify(err));
...@@ -777,8 +777,8 @@ export default function ActsAccountCustomData() { ...@@ -777,8 +777,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_2000 * @tc.number : ActsAccountCustomData_2000
* @tc.name : setAssociatedData and getCustomData are called when the argument is spaced * @tc.name : setCustomData and getCustomData are called when the argument is spaced
* @tc.desc : Call setAssociatedData and then getCustomData when the incoming value is null(promise) * @tc.desc : Call setCustomData and then getCustomData when the incoming value is null(promise)
*/ */
it('ActsAccountCustomData_2000', 0, async function (done) { it('ActsAccountCustomData_2000', 0, async function (done) {
console.debug("====>ActsAccountCustomData_2000 start===="); console.debug("====>ActsAccountCustomData_2000 start====");
...@@ -794,10 +794,10 @@ export default function ActsAccountCustomData() { ...@@ -794,10 +794,10 @@ export default function ActsAccountCustomData() {
done(); done();
} }
try{ try{
await appAccountManager.setAssociatedData("account_name_2000", "key20", ""); await appAccountManager.setCustomData("account_name_2000", "key20", "");
} }
catch(err){ catch(err){
console.error("====>setAssociatedData ActsAccountCustomData_2000 err:" + JSON.stringify(err)); console.error("====>setCustomData ActsAccountCustomData_2000 err:" + JSON.stringify(err));
expect().assertFail(); expect().assertFail();
done(); done();
} }
...@@ -826,8 +826,8 @@ export default function ActsAccountCustomData() { ...@@ -826,8 +826,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_2100 * @tc.number : ActsAccountCustomData_2100
* @tc.name : setAssociatedData setting value is called when the argument is wrong * @tc.name : setCustomData setting value is called when the argument is wrong
* @tc.desc : Call setAssociatedData setting value when the incoming parameter value is wrong(callback) * @tc.desc : Call setCustomData setting value when the incoming parameter value is wrong(callback)
*/ */
it('ActsAccountCustomData_2100', 0, async function (done) { it('ActsAccountCustomData_2100', 0, async function (done) {
console.debug("====>ActsAccountCustomData_2100 start===="); console.debug("====>ActsAccountCustomData_2100 start====");
...@@ -840,8 +840,8 @@ export default function ActsAccountCustomData() { ...@@ -840,8 +840,8 @@ export default function ActsAccountCustomData() {
console.debug("====>add account ActsAccountCustomData_2100 err:" + JSON.stringify(err)); console.debug("====>add account ActsAccountCustomData_2100 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
expect(valueOverSize.length).assertEqual(1025); expect(valueOverSize.length).assertEqual(1025);
appAccountManager.setAssociatedData("account_name_2100", "key21", valueOverSize, (err)=>{ appAccountManager.setCustomData("account_name_2100", "key21", valueOverSize, (err)=>{
console.debug("====>setAssociatedData ActsAccountCustomData_2100 err:" + JSON.stringify(err)); console.debug("====>setCustomData ActsAccountCustomData_2100 err:" + JSON.stringify(err));
expect(err.code != 0).assertEqual(true); expect(err.code != 0).assertEqual(true);
appAccountManager.removeAccount("account_name_2100", (err)=>{ appAccountManager.removeAccount("account_name_2100", (err)=>{
console.debug("====>delete Account ActsAccountCustomData_2100 err:" + JSON.stringify(err)); console.debug("====>delete Account ActsAccountCustomData_2100 err:" + JSON.stringify(err));
...@@ -855,8 +855,8 @@ export default function ActsAccountCustomData() { ...@@ -855,8 +855,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_2200 * @tc.number : ActsAccountCustomData_2200
* @tc.name : setAssociatedData setting value is called when the argument is wrong * @tc.name : setCustomData setting value is called when the argument is wrong
* @tc.desc : Call setAssociatedData setting value when the incoming parameter value is wrong(promise) * @tc.desc : Call setCustomData setting value when the incoming parameter value is wrong(promise)
*/ */
it('ActsAccountCustomData_2200', 0, async function (done) { it('ActsAccountCustomData_2200', 0, async function (done) {
console.debug("====>ActsAccountCustomData_2200 start===="); console.debug("====>ActsAccountCustomData_2200 start====");
...@@ -875,10 +875,10 @@ export default function ActsAccountCustomData() { ...@@ -875,10 +875,10 @@ export default function ActsAccountCustomData() {
done(); done();
} }
try{ try{
await appAccountManager.setAssociatedData("account_name_2200", "key22", valueOverSize); await appAccountManager.setCustomData("account_name_2200", "key22", valueOverSize);
} }
catch(err){ catch(err){
console.debug("====>setAssociatedData ActsAccountCustomData_2200 err:" + JSON.stringify(err)); console.debug("====>setCustomData ActsAccountCustomData_2200 err:" + JSON.stringify(err));
expect(err.code != 0).assertEqual(true); expect(err.code != 0).assertEqual(true);
console.debug("====>delete account ActsAccountCustomData_2200 start===="); console.debug("====>delete account ActsAccountCustomData_2200 start====");
try{ try{
...@@ -896,8 +896,8 @@ export default function ActsAccountCustomData() { ...@@ -896,8 +896,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_2300 * @tc.number : ActsAccountCustomData_2300
* @tc.name : setAssociatedData and getCustomData are called when the argument is spaced * @tc.name : setCustomData and getCustomData are called when the argument is spaced
* @tc.desc : Call setAssociatedData and then getCustomData when the incoming value is a space(callback) * @tc.desc : Call setCustomData and then getCustomData when the incoming value is a space(callback)
*/ */
it('ActsAccountCustomData_2300', 0, async function (done) { it('ActsAccountCustomData_2300', 0, async function (done) {
console.debug("====>ActsAccountCustomData_2300 start===="); console.debug("====>ActsAccountCustomData_2300 start====");
...@@ -906,8 +906,8 @@ export default function ActsAccountCustomData() { ...@@ -906,8 +906,8 @@ export default function ActsAccountCustomData() {
appAccountManager.createAccount("account_name_2300", (err)=>{ appAccountManager.createAccount("account_name_2300", (err)=>{
console.debug("====>add account ActsAccountCustomData_2300 err:" + JSON.stringify(err)); console.debug("====>add account ActsAccountCustomData_2300 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
appAccountManager.setAssociatedData("account_name_2300", "key23", " ", (err)=>{ appAccountManager.setCustomData("account_name_2300", "key23", " ", (err)=>{
console.debug("====>setAssociatedData ActsAccountCustomData_2300 err:" + JSON.stringify(err)); console.debug("====>setCustomData ActsAccountCustomData_2300 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
appAccountManager.getCustomData("account_name_2300", "key23", (err, data)=>{ appAccountManager.getCustomData("account_name_2300", "key23", (err, data)=>{
console.debug("====>getCustomData 2300 err:" + JSON.stringify(err)); console.debug("====>getCustomData 2300 err:" + JSON.stringify(err));
...@@ -927,8 +927,8 @@ export default function ActsAccountCustomData() { ...@@ -927,8 +927,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_2400 * @tc.number : ActsAccountCustomData_2400
* @tc.name : setAssociatedData and getCustomData are called when the argument is spaced * @tc.name : setCustomData and getCustomData are called when the argument is spaced
* @tc.desc : Call setAssociatedData and then getCustomData when the incoming value is a space(promise) * @tc.desc : Call setCustomData and then getCustomData when the incoming value is a space(promise)
*/ */
it('ActsAccountCustomData_2400', 0, async function (done) { it('ActsAccountCustomData_2400', 0, async function (done) {
console.debug("====>ActsAccountCustomData_2400 start===="); console.debug("====>ActsAccountCustomData_2400 start====");
...@@ -943,7 +943,7 @@ export default function ActsAccountCustomData() { ...@@ -943,7 +943,7 @@ export default function ActsAccountCustomData() {
expect().assertFail(); expect().assertFail();
done(); done();
} }
await appAccountManager.setAssociatedData("account_name_2400", "key24", " "); await appAccountManager.setCustomData("account_name_2400", "key24", " ");
try{ try{
var data = await appAccountManager.getCustomData("account_name_2400", "key24"); var data = await appAccountManager.getCustomData("account_name_2400", "key24");
} }
...@@ -969,8 +969,8 @@ export default function ActsAccountCustomData() { ...@@ -969,8 +969,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_2500 * @tc.number : ActsAccountCustomData_2500
* @tc.name : setAssociatedData and getCustomData are called when the argument is spaced * @tc.name : setCustomData and getCustomData are called when the argument is spaced
* @tc.desc : Call setAssociatedData and then getCustomData when the incoming name is null(callback) * @tc.desc : Call setCustomData and then getCustomData when the incoming name is null(callback)
*/ */
it('ActsAccountCustomData_2500', 0, async function (done) { it('ActsAccountCustomData_2500', 0, async function (done) {
console.debug("====>ActsAccountCustomData_2500 start===="); console.debug("====>ActsAccountCustomData_2500 start====");
...@@ -979,8 +979,8 @@ export default function ActsAccountCustomData() { ...@@ -979,8 +979,8 @@ export default function ActsAccountCustomData() {
appAccountManager.createAccount("account_name_2500", (err)=>{ appAccountManager.createAccount("account_name_2500", (err)=>{
console.debug("====>add account ActsAccountCustomData_2500 err:" + JSON.stringify(err)); console.debug("====>add account ActsAccountCustomData_2500 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
appAccountManager.setAssociatedData("", "key25", "value25", (err)=>{ appAccountManager.setCustomData("", "key25", "value25", (err)=>{
console.debug("====>setAssociatedData ActsAccountCustomData_2500 err:" + JSON.stringify(err)); console.debug("====>setCustomData ActsAccountCustomData_2500 err:" + JSON.stringify(err));
expect(err.code != 0).assertEqual(true); expect(err.code != 0).assertEqual(true);
appAccountManager.removeAccount("account_name_2500", (err)=>{ appAccountManager.removeAccount("account_name_2500", (err)=>{
console.debug("====>delete Account ActsAccountCustomData_2500 err:" + JSON.stringify(err)); console.debug("====>delete Account ActsAccountCustomData_2500 err:" + JSON.stringify(err));
...@@ -994,8 +994,8 @@ export default function ActsAccountCustomData() { ...@@ -994,8 +994,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_2600 * @tc.number : ActsAccountCustomData_2600
* @tc.name : setAssociatedData and getCustomData are called when the argument is spaced * @tc.name : setCustomData and getCustomData are called when the argument is spaced
* @tc.desc : Call setAssociatedData and then getCustomData when the incoming name is null(promise) * @tc.desc : Call setCustomData and then getCustomData when the incoming name is null(promise)
*/ */
it('ActsAccountCustomData_2600', 0, async function (done) { it('ActsAccountCustomData_2600', 0, async function (done) {
console.debug("====>ActsAccountCustomData_2600 start===="); console.debug("====>ActsAccountCustomData_2600 start====");
...@@ -1011,10 +1011,10 @@ export default function ActsAccountCustomData() { ...@@ -1011,10 +1011,10 @@ export default function ActsAccountCustomData() {
done(); done();
} }
try{ try{
await appAccountManager.setAssociatedData("", "key26", "value26"); await appAccountManager.setCustomData("", "key26", "value26");
} }
catch(err){ catch(err){
console.debug("====>setAssociatedData ActsAccountCustomData_2600 err:" + JSON.stringify(err)); console.debug("====>setCustomData ActsAccountCustomData_2600 err:" + JSON.stringify(err));
expect(err.code != 0).assertEqual(true); expect(err.code != 0).assertEqual(true);
console.debug("====>delete account ActsAccountCustomData_2600 start===="); console.debug("====>delete account ActsAccountCustomData_2600 start====");
try{ try{
...@@ -1032,8 +1032,8 @@ export default function ActsAccountCustomData() { ...@@ -1032,8 +1032,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_2700 * @tc.number : ActsAccountCustomData_2700
* @tc.name : setAssociatedData setting name is called when the argument is wrong * @tc.name : setCustomData setting name is called when the argument is wrong
* @tc.desc : Call setAssociatedData setting name when the incoming parameter name is wrong(callback) * @tc.desc : Call setCustomData setting name when the incoming parameter name is wrong(callback)
*/ */
it('ActsAccountCustomData_2700', 0, async function (done) { it('ActsAccountCustomData_2700', 0, async function (done) {
console.debug("====>ActsAccountCustomData_2700 start===="); console.debug("====>ActsAccountCustomData_2700 start====");
...@@ -1046,8 +1046,8 @@ export default function ActsAccountCustomData() { ...@@ -1046,8 +1046,8 @@ export default function ActsAccountCustomData() {
console.debug("====>add account ActsAccountCustomData_2700 err:" + JSON.stringify(err)); console.debug("====>add account ActsAccountCustomData_2700 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
expect(nameOverSize.length).assertEqual(1025); expect(nameOverSize.length).assertEqual(1025);
appAccountManager.setAssociatedData(nameOverSize, "key27", "value27", (err)=>{ appAccountManager.setCustomData(nameOverSize, "key27", "value27", (err)=>{
console.debug("====>ActsAccountCustomData_2700 setAssociatedData:" + JSON.stringify(err)); console.debug("====>ActsAccountCustomData_2700 setCustomData:" + JSON.stringify(err));
expect(err.code != 0).assertEqual(true); expect(err.code != 0).assertEqual(true);
appAccountManager.removeAccount("account_name_2700", (err)=>{ appAccountManager.removeAccount("account_name_2700", (err)=>{
console.debug("====>delete Account ActsAccountCustomData_2700 err:" + JSON.stringify(err)); console.debug("====>delete Account ActsAccountCustomData_2700 err:" + JSON.stringify(err));
...@@ -1061,8 +1061,8 @@ export default function ActsAccountCustomData() { ...@@ -1061,8 +1061,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_2800 * @tc.number : ActsAccountCustomData_2800
* @tc.name : setAssociatedData setting name is called when the argument is wrong * @tc.name : setCustomData setting name is called when the argument is wrong
* @tc.desc : Call setAssociatedData setting name when the incoming parameter name is wrong(promise) * @tc.desc : Call setCustomData setting name when the incoming parameter name is wrong(promise)
*/ */
it('ActsAccountCustomData_2800', 0, async function (done) { it('ActsAccountCustomData_2800', 0, async function (done) {
console.debug("====>ActsAccountCustomData_2800 start===="); console.debug("====>ActsAccountCustomData_2800 start====");
...@@ -1082,10 +1082,10 @@ export default function ActsAccountCustomData() { ...@@ -1082,10 +1082,10 @@ export default function ActsAccountCustomData() {
done(); done();
} }
try{ try{
await appAccountManager.setAssociatedData(nameOverSize, "key28", "value28"); await appAccountManager.setCustomData(nameOverSize, "key28", "value28");
} }
catch(err){ catch(err){
console.debug("====>setAssociatedData ActsAccountCustomData_2800 err:" + JSON.stringify(err)); console.debug("====>setCustomData ActsAccountCustomData_2800 err:" + JSON.stringify(err));
expect(err.code != 0).assertEqual(true); expect(err.code != 0).assertEqual(true);
console.debug("====>delete account ActsAccountCustomData_2800 start===="); console.debug("====>delete account ActsAccountCustomData_2800 start====");
try{ try{
...@@ -1103,8 +1103,8 @@ export default function ActsAccountCustomData() { ...@@ -1103,8 +1103,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_2900 * @tc.number : ActsAccountCustomData_2900
* @tc.name : setAssociatedData and getCustomData are called when the argument is spaced * @tc.name : setCustomData and getCustomData are called when the argument is spaced
* @tc.desc : Call setAssociatedData and then getCustomData when the incoming name is a space(callback) * @tc.desc : Call setCustomData and then getCustomData when the incoming name is a space(callback)
*/ */
it('ActsAccountCustomData_2900', 0, async function (done) { it('ActsAccountCustomData_2900', 0, async function (done) {
console.debug("====>ActsAccountCustomData_2900 start===="); console.debug("====>ActsAccountCustomData_2900 start====");
...@@ -1113,8 +1113,8 @@ export default function ActsAccountCustomData() { ...@@ -1113,8 +1113,8 @@ export default function ActsAccountCustomData() {
appAccountManager.createAccount(" ", (err)=>{ appAccountManager.createAccount(" ", (err)=>{
console.debug("====>add account ActsAccountCustomData_2900 err:" + JSON.stringify(err)); console.debug("====>add account ActsAccountCustomData_2900 err:" + JSON.stringify(err));
expect(err.code != 0).assertEqual(true); expect(err.code != 0).assertEqual(true);
appAccountManager.setAssociatedData(" ", "key29", "value29", (err)=>{ appAccountManager.setCustomData(" ", "key29", "value29", (err)=>{
console.debug("====>setAssociatedData ActsAccountCustomData_2900 err:" + JSON.stringify(err)); console.debug("====>setCustomData ActsAccountCustomData_2900 err:" + JSON.stringify(err));
expect(err.code != 0).assertEqual(true); expect(err.code != 0).assertEqual(true);
appAccountManager.getCustomData(" ", "key29", (err, data)=>{ appAccountManager.getCustomData(" ", "key29", (err, data)=>{
console.debug("====>getCustomData 2900 err:" + JSON.stringify(err)); console.debug("====>getCustomData 2900 err:" + JSON.stringify(err));
...@@ -1130,8 +1130,8 @@ export default function ActsAccountCustomData() { ...@@ -1130,8 +1130,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_3000 * @tc.number : ActsAccountCustomData_3000
* @tc.name : setAssociatedData and getCustomData are called when the argument is spaced * @tc.name : setCustomData and getCustomData are called when the argument is spaced
* @tc.desc : Call setAssociatedData and then getCustomData when the incoming name is a space(promise) * @tc.desc : Call setCustomData and then getCustomData when the incoming name is a space(promise)
*/ */
it('ActsAccountCustomData_3000', 0, async function (done) { it('ActsAccountCustomData_3000', 0, async function (done) {
console.debug("====>ActsAccountCustomData_3000 start===="); console.debug("====>ActsAccountCustomData_3000 start====");
...@@ -1144,10 +1144,10 @@ export default function ActsAccountCustomData() { ...@@ -1144,10 +1144,10 @@ export default function ActsAccountCustomData() {
console.debug("====>add account ActsAccountCustomData_3000 err:" + JSON.stringify(err)); console.debug("====>add account ActsAccountCustomData_3000 err:" + JSON.stringify(err));
expect(err.code != 0).assertEqual(true); expect(err.code != 0).assertEqual(true);
try{ try{
await appAccountManager.setAssociatedData(" ", "key30", "value30"); await appAccountManager.setCustomData(" ", "key30", "value30");
} }
catch(err){ catch(err){
console.error("====>setAssociatedData ActsAccountCustomData_3000 err:" + JSON.stringify(err)); console.error("====>setCustomData ActsAccountCustomData_3000 err:" + JSON.stringify(err));
expect(err.code != 0).assertEqual(true); expect(err.code != 0).assertEqual(true);
try{ try{
await appAccountManager.getCustomData(" ", "key30"); await appAccountManager.getCustomData(" ", "key30");
...@@ -1165,8 +1165,8 @@ export default function ActsAccountCustomData() { ...@@ -1165,8 +1165,8 @@ export default function ActsAccountCustomData() {
/* /*
* @tc.number : ActsAccountCustomData_3100 * @tc.number : ActsAccountCustomData_3100
* @tc.name : The correct calls setAssociatedData and getCustomData get the value * @tc.name : The correct calls setCustomData and getCustomData get the value
* @tc.desc : The setAssociatedData setting valueis called when the forwarding parameters * @tc.desc : The setCustomData setting valueis called when the forwarding parameters
* are correct, and then getCustomData is called for the value(callback) * are correct, and then getCustomData is called for the value(callback)
*/ */
it('ActsAccountCustomData_3100', 0, async function (done) { it('ActsAccountCustomData_3100', 0, async function (done) {
...@@ -1176,8 +1176,8 @@ export default function ActsAccountCustomData() { ...@@ -1176,8 +1176,8 @@ export default function ActsAccountCustomData() {
appAccountManager.createAccount("account_name_3100",(err)=>{ appAccountManager.createAccount("account_name_3100",(err)=>{
console.debug("====>add ActsAccountCustomData_3100 err:" + JSON.stringify(err)); console.debug("====>add ActsAccountCustomData_3100 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
appAccountManager.setAssociatedData("account_name_3100", "key31", "value31", (err)=>{ appAccountManager.setCustomData("account_name_3100", "key31", "value31", (err)=>{
console.debug("====>setAssociatedData ActsAccountCustomData_3100 err:" + JSON.stringify(err)); console.debug("====>setCustomData ActsAccountCustomData_3100 err:" + JSON.stringify(err));
expect(err).assertEqual(null); expect(err).assertEqual(null);
var result = appAccountManager.getCustomDataSync("account_name_3100", "key31") var result = appAccountManager.getCustomDataSync("account_name_3100", "key31")
console.debug("====>getCustomData ActsAccountCustomData_3100 result:" + JSON.stringify(result)); console.debug("====>getCustomData ActsAccountCustomData_3100 result:" + JSON.stringify(result));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册