GeocoderMTest.test.js 47.2 KB
Newer Older
Q
quanli 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Copyright (C) 2022 Huawei Device Co., Ltd.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

Q
quanli 已提交
16
import geolocation from '@ohos.geolocation';
Q
quanli 已提交
17 18 19 20
import geolocationm from '@ohos.geoLocationManager';
import abilityAccessCtrl from '@ohos.abilityAccessCtrl'
import bundle from '@ohos.bundle'
import osaccount from '@ohos.account.osAccount'
Q
quanli 已提交
21
import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from '@ohos/hypium'
Q
quanli 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46

let LocationRequestScenario = {
    UNSET: 0x300,
    NAVIGATION: 0x301,
    TRAJECTORY_TRACKING: 0x302,
    CAR_HAILING: 0x303,
    DAILY_LIFE_SERVICE: 0x304,
    NO_POWER: 0x305
}
let LocationRequestPriority = { UNSET: 0x200, ACCURACY: 0x201, LOW_POWER: 0x202, FIRST_FIX: 0x203 }

let LocationPrivacyType = {
    OTHERS: 0,
    STARTUP: 1,
    CORE_LOCATION: 2
}

function sleep(ms) {
    return new Promise(resolve => setTimeout(resolve, ms));
}

async function changedLocationMode(){
    let result1 = geolocationm.isLocationEnabled();
    console.info('[lbs_js] getLocationSwitchState result: ' + JSON.stringify(result1));
    if(!result1){
Q
quanli 已提交
47
        await geolocation.requestEnableLocation().then(async(result) => {
Q
quanli 已提交
48
            await sleep(1000);
Q
quanli 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
            console.info('[lbs_js] test requestEnableLocation promise result: ' + JSON.stringify(result));
        }).catch((error) => {
            console.info("[lbs_js] promise then error." + JSON.stringify(error));
            expect().assertFail();
        });
    }
    let result2 = geolocationm.isLocationEnabled();
    console.info('[lbs_js] check LocationSwitchState result: ' + JSON.stringify(result2));
}

async function applyPermission() {
    let osAccountManager = osaccount.getAccountManager();
    console.info("=== getAccountManager finish");
    let localId = await osAccountManager.getOsAccountLocalIdFromProcess();
    console.info("LocalId is :" + localId);
    let appInfo = await bundle.getApplicationInfo('ohos.acts.location.geolocation.function', 0, localId);
    let atManager = abilityAccessCtrl.createAtManager();
    if (atManager != null) {
        let tokenID = appInfo.accessTokenId;
        console.info('[permission] case accessTokenID is ' + tokenID);
        let permissionName1 = 'ohos.permission.LOCATION';
        let permissionName2 = 'ohos.permission.LOCATION_IN_BACKGROUND';
        await atManager.grantUserGrantedPermission(tokenID, permissionName1, 1).then((result) => {
            console.info('[permission] case grantUserGrantedPermission success :' + JSON.stringify(result));
        }).catch((err) => {
            console.info('[permission] case grantUserGrantedPermission failed :' + JSON.stringify(err));
        });
        await atManager.grantUserGrantedPermission(tokenID, permissionName2, 1).then((result) => {
            console.info('[permission] case grantUserGrantedPermission success :' + JSON.stringify(result));
        }).catch((err) => {
            console.info('[permission] case grantUserGrantedPermission failed :' + JSON.stringify(err));
        });
    } else {
        console.info('[permission] case apply permission failed, createAtManager failed');
    }
}

Q
quanli 已提交
86
export default function geolocationTest_geo5() {
Q
quanli 已提交
87

Q
quanli 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101
    describe('geolocationTest_geo5', function () {
    
        console.log('#start AccessTokenTests#');
        beforeAll(async function (done) {
            console.info('beforeAll case');
            await applyPermission();
            done();
        })
    
        beforeEach(async function (done) {
            console.info('beforeEach case');
            await changedLocationMode();
            done();
        })
Q
quanli 已提交
102 103 104 105 106 107 108 109 110 111


    /**
     * @tc.number SUB_HSS_LocationSystem_Geo_1900
     * @tc.name testIsGeoServiceAvailable
     * @tc.desc Check whether address resolution and reverse address resolution are supported.
     * @tc.size MEDIUM
     * @tc.type Function
     * @tc.level Level 2
     */
Q
quanli 已提交
112
     it('SUB_HSS_LocationSystem_Geo_1900', 0, function () {
Q
quanli 已提交
113 114 115 116 117 118
        try {
            let geocoder1 = geolocationm.isGeocoderAvailable();
            console.info('[lbs_js] isGeocoderAvailable result: ' + JSON.stringify(geocoder1));
            expect(true).assertEqual(JSON.stringify(geocoder1) != null);
        } catch (error) {
            console.info('[lbs_js] isGeocoderAvailable err:' + JSON.stringify(error));
Q
quanli 已提交
119 120
            console.info('[lbs_js] not support now');
            expect(error.code).assertEqual("801");
Q
quanli 已提交
121
        }
Q
quanli 已提交
122 123
    });

Q
quanli 已提交
124
     /**
Q
quanli 已提交
125 126 127 128 129 130 131 132
     * @tc.number SUB_HSS_LocationSystem_Geo_2000
     * @tc.name TestgetAddressesFromLocation
     * @tc.desc Address Resolution Test.
     * @tc.size MEDIUM
     * @tc.type Function
     * @tc.level Level 2
     */
    it('SUB_HSS_LocationSystem_Geo_2000', 0, async function (done) {
Q
quanli 已提交
133
        try {
Q
quanli 已提交
134
            let reverseGeocodeRequest = { "latitude": 31.265496, "longitude": 121.62771, "maxItems": 1 };
Q
quanli 已提交
135 136
            geolocationm.getAddressesFromLocation(reverseGeocodeRequest, (err, data) => {
                if (err) {
Q
quanli 已提交
137
                    console.info('[lbs_js] getAddressesFromLocation4 callback err is:' + JSON.stringify(err));
Q
quanli 已提交
138 139
                    console.info('[lbs_js] not support now');
                    expect(err.code).assertEqual(801);
Q
quanli 已提交
140
                } else {
Q
quanli 已提交
141
                    console.info("[lbs_js] getAddressesFromLocation4 callback data is:" + JSON.stringify(data));
Q
quanli 已提交
142 143 144
                    expect(true).assertEqual((JSON.stringify(data)) != null);
                }
            });
Q
quanli 已提交
145 146
        } catch (error) {
            console.info("[lbs_js] getAddressesFromLocation4 callback try error:"+ error);
Q
quanli 已提交
147
            expect(true).assertFalse();
Q
quanli 已提交
148 149 150
        }
        await sleep(2000);
        done();
Q
quanli 已提交
151 152
    })

Q
quanli 已提交
153

Q
quanli 已提交
154 155 156 157 158 159 160 161 162
    /**
    * @tc.number SUB_HSS_LocationSystem_Geo_2100
     * @tc.name TestgetAddressesFromLocation
     * @tc.desc Address Resolution Test.
     * @tc.size MEDIUM
     * @tc.type Function
     * @tc.level Level 2
     */
    it('SUB_HSS_LocationSystem_Geo_2100', 0, async function (done) {
Q
quanli 已提交
163
        try {
Q
quanli 已提交
164
            let reverseGeocodeRequest = { "latitude": 31.265496, "longitude": 121.62771, "maxItems": 5};
Q
quanli 已提交
165 166
            await geolocationm.getAddressesFromLocation(reverseGeocodeRequest).then((data) => {
                console.info('[lbs_js] getAddressesFromLocation21 promise: ' + JSON.stringify(data));
Q
quanli 已提交
167 168
                if(data!="")
                {
Q
quanli 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
                    console.info('addressUrl: ' + JSON.stringify(data[0].addressUrl)
                    +',administrativeArea: '+ JSON.stringify(data[0].administrativeArea)
                    +',countryCode: '+ JSON.stringify(data[0].countryCode)
                    +'countryName: '+ JSON.stringify(data[0].countryName )
                    +',descriptions: '+ JSON.stringify(data[0].descriptions)
                    +',descriptionsSize: '+JSON.stringify(data[0].descriptionsSize)
                    +',latitude: '+ JSON.stringify(data[0].latitude)
                    +',locale: '+ JSON.stringify(data[0].locale)
                    +',locality:'+ JSON.stringify(data[0].locality)
                    +',longitude:'+ JSON.stringify(data[0].longitude)
                    +',phoneNumber: '+ JSON.stringify(data[0].phoneNumber)
                    +',placeName:'+ JSON.stringify(data[0].placeName)
                    + ',postalCode: '+JSON.stringify(data[0].postalCode)
                    + ',premises:'+JSON.stringify(data[0].premises)
                    + ',roadName:'+JSON.stringify(data[0].roadName)
                    + ',subAdministrativeArea:'+JSON.stringify(data[0].subAdministrativeArea)
                    + ',subLocality:'+JSON.stringify(data[0].subLocality )
                    +',subRoadName:'+ JSON.stringify(data[0].subRoadName)
                    + ',isFromMock:'+JSON.stringify(data[0].isFromMock));
Q
quanli 已提交
188
                }
Q
quanli 已提交
189 190 191
            }).catch(error => {
                console.info("[lbs_js] getAddressesFromLocation21 promise then error." + JSON.stringify(error));
                console.info('[lbs_js] not support now');
Q
quanli 已提交
192
                expect(error.code).assertEqual(801);
Q
quanli 已提交
193 194 195
            });
        } catch (error) {
            console.info("[lbs_js] getAddressesFromLocation21 try err." + JSON.stringify(error));
Q
quanli 已提交
196
            expect(true).assertFalse();
Q
quanli 已提交
197
        }
Q
quanli 已提交
198
        await sleep(1000);
Q
quanli 已提交
199
        done();
Q
quanli 已提交
200 201 202 203 204 205 206 207 208 209 210
    })

    /**
     * @tc.number SUB_HSS_LocationSystem_Geo_2200
     * @tc.name TestgetAddressesFromLocation
     * @tc.desc Obtaining Multiple Addresses Using the Address Resolution Function.
     * @tc.size MEDIUM
     * @tc.type Function
     * @tc.level Level 2
     */
    it('SUB_HSS_LocationSystem_Geo_2200', 0, async function (done) {
Q
quanli 已提交
211 212 213 214 215 216 217 218
        try {
            let reverseGeocodeRequest = { "latitude": 31.265496, "longitude": 121.62771, "maxItems": 5 };
            await geolocationm.getAddressesFromLocation(reverseGeocodeRequest).then((data) => {
                console.info('[lbs_js] getAddressesFromLocation22 promise:' + JSON.stringify(data));
                expect(true).assertEqual((JSON.stringify(data)) != null);
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocation22 promise then error." + JSON.stringify(error));
                console.info('[lbs_js] not support now');
Q
quanli 已提交
219
                expect(error.code).assertEqual(801);
Q
quanli 已提交
220 221 222
            });
        } catch (error) {
            console.info("[lbs_js] getAddressesFromLocation22 try err." + JSON.stringify(error));
Q
quanli 已提交
223
            expect(true).assertFalse();
Q
quanli 已提交
224
        }
Q
quanli 已提交
225
        await sleep(1000);
Q
quanli 已提交
226
        done();
Q
quanli 已提交
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
    })

    /**
    * @tc.number SUB_HSS_LocationSystem_Geo_2300
     * @tc.name TestgetAddressesFromLocation
     * @tc.desc Input parameter boundary test of the address resolution function
     * @tc.size MEDIUM
     * @tc.type Function
     * @tc.level Level 2
     */
    it('SUB_HSS_LocationSystem_Geo_2300', 0, async function (done) {
        let reverseGeocodeRequest1 = { "latitude": 90, "longitude": 121.62771, "maxItems": 1 };
        try {
            await geolocationm.getAddressesFromLocation(reverseGeocodeRequest1).then((data) => {
                console.info('[lbs_js] getAddressesFromLocation2301 promise: ' + JSON.stringify(data));
                expect(true).assertEqual((JSON.stringify(data)) != null);
            }).catch(error => {
                console.info("[lbs_js] getAddressesFromLocation2301 promise then error." + JSON.stringify(error));
                console.info('[lbs_js] not support now');
Q
quanli 已提交
246
                expect(error.code).assertEqual(801);
Q
quanli 已提交
247 248
            });
        } catch (error) {
Q
quanli 已提交
249 250
            console.info("[lbs_js] getAddressesFromLocation message." + JSON.stringify(error));
            expect(true).assertFalse();
Q
quanli 已提交
251 252 253 254 255 256 257 258
        }
        let reverseGeocodeRequest2 = { "latitude": 90.1, "longitude": 121.62771, "maxItems": 1 };
        try {
            await geolocationm.getAddressesFromLocation(reverseGeocodeRequest2).then((data) => {
                console.info('[lbs_js] getAddressesFromLocation promise: ' + JSON.stringify(data));
                expect(data.length).assertEqual(0);
            }).catch(error => {
                console.info("[lbs_js] getAddressesFromLocation2302 promise then error." + JSON.stringify(error));
Q
quanli 已提交
259
                expect(true).assertFalse();
Q
quanli 已提交
260 261
            });
        } catch (error) {
Q
quanli 已提交
262 263
            console.info("[lbs_js] getAddressesFromLocation message." + JSON.stringify(error));
            expect(error.code).assertEqual("401");
Q
quanli 已提交
264 265 266 267 268 269 270 271 272
        }
        let reverseGeocodeRequest3 = { "latitude": -90, "longitude": 121.62771, "maxItems": 1 };
        try {
            await geolocationm.getAddressesFromLocation(reverseGeocodeRequest3).then((data) => {
                console.info('[lbs_js] getAddressesFromLocation2303 promise: ' + JSON.stringify(data));
                expect(true).assertEqual((JSON.stringify(data)) != null);
            }).catch(error => {
                console.info("[lbs_js] getAddressesFromLocation2303 promise then error." + JSON.stringify(error));
                console.info('[lbs_js] not support now');
Q
quanli 已提交
273
                expect(error.code).assertEqual(801);
Q
quanli 已提交
274 275
            });
        } catch (error) {
Q
quanli 已提交
276 277
            console.info("[lbs_js] getAddressesFromLocation message." + JSON.stringify(error));
            expect(true).assertFalse();
Q
quanli 已提交
278 279 280 281 282
        }
        let reverseGeocodeRequest4 = { "latitude": -90.1, "longitude": 121.62771, "maxItems": 1 };
        try {
            await geolocationm.getAddressesFromLocation(reverseGeocodeRequest4).then((data) => {
                console.info('[lbs_js] getAddressesFromLocation2304 promise: ' + JSON.stringify(data));
Q
quanli 已提交
283
                expect(true).assertEqual((JSON.stringify(data)) != null);
Q
quanli 已提交
284 285
            }).catch(error => {
                console.info("[lbs_js] getAddressesFromLocation2304 promise then error." + JSON.stringify(error));
Q
quanli 已提交
286
                expect(true).assertFalse();
Q
quanli 已提交
287 288
            });
        } catch (error) {
Q
quanli 已提交
289 290
            console.info("[lbs_js] getAddressesFromLocation message." + JSON.stringify(error));
            expect(error.code).assertEqual("401");
Q
quanli 已提交
291
        }
Q
quanli 已提交
292
        await sleep(1000);
Q
quanli 已提交
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
        done();
    })

    /**
     * @tc.number SUB_HSS_LocationSystem_Geo_2400
     * @tc.name TestgetAddressesFromLocation
     * @tc.desc Input parameter boundary test of the address resolution function
     * @tc.size MEDIUM
     * @tc.type Function
     * @tc.level Level 2
     */
    it('SUB_HSS_LocationSystem_Geo_2400', 0, async function (done) {
        let reverseGeocodeRequest = { "latitude": 31.265496, "longitude": 180, "maxItems": 1 };
        try {
            await geolocationm.getAddressesFromLocation(reverseGeocodeRequest).then((data) => {
                console.info('[lbs_js] getAddressesFromLocation2401 promise: ' + JSON.stringify(data));
                expect(true).assertEqual((JSON.stringify(data)) != null);
            }).catch(error => {
                console.info("[lbs_js] getAddressesFromLocation2401 promise then error." + JSON.stringify(error));
                console.info('[lbs_js] not support now');
Q
quanli 已提交
313
                expect(error.code).assertEqual(801);
Q
quanli 已提交
314 315
            });
        } catch (error) {
Q
quanli 已提交
316 317
            console.info("[lbs_js] getAddressesFromLocation message." + JSON.stringify(error));
            expect(true).assertFalse();
Q
quanli 已提交
318
        }
Q
quanli 已提交
319
        await sleep(1000);
Q
quanli 已提交
320 321 322 323 324 325 326
        let reverseGeocodeRequest1 = { "latitude": 31.265496, "longitude": -180.1, "maxItems": 1 };
        try {
            await geolocationm.getAddressesFromLocation(reverseGeocodeRequest1).then((data) => {
                console.info('[lbs_js] getAddressesFromLocation2402 promise: ' + JSON.stringify(data));
                expect(data.length).assertEqual(0);
            }).catch(error => {
                console.info("[lbs_js] getAddressesFromLocation2402 promise then error." + JSON.stringify(error));
Q
quanli 已提交
327
                expect(true).assertFalse();
Q
quanli 已提交
328 329
            });
        } catch (error) {
Q
quanli 已提交
330
            console.info("[lbs_js] getAddressesFromLocation message." + JSON.stringify(error));
Q
quanli 已提交
331 332
            expect(true).assertEqual((JSON.stringify(error.message)) != null);
        }
Q
quanli 已提交
333
        await sleep(1000);
Q
quanli 已提交
334 335 336 337 338 339 340 341
        let reverseGeocodeRequest2 = { "latitude": 31.265496, "longitude": 180, "maxItems": 1 };
        try {
            await geolocationm.getAddressesFromLocation(reverseGeocodeRequest2).then((data) => {
                console.info('[lbs_js] getAddressesFromLocation2403 promise: ' + JSON.stringify(data));
                expect(true).assertEqual((JSON.stringify(data)) != null);
            }).catch(error => {
                console.info("[lbs_js] getAddressesFromLocation2403 promise then error." + JSON.stringify(error));
                console.info('[lbs_js] not support now');
Q
quanli 已提交
342
                expect(error.code).assertEqual(801);
Q
quanli 已提交
343 344
            });
        } catch (error) {
Q
quanli 已提交
345 346
            console.info("[lbs_js] getAddressesFromLocation message." + JSON.stringify(error));
            expect(true).assertFalse();
Q
quanli 已提交
347
        }
Q
quanli 已提交
348
        await sleep(1000);
Q
quanli 已提交
349 350 351 352 353 354 355
        let reverseGeocodeRequest3 = { "latitude": 31.265496, "longitude": 180.1, "maxItems": 1 };
        try {
            await geolocationm.getAddressesFromLocation(reverseGeocodeRequest3).then((data) => {
                console.info('[lbs_js] getAddressesFromLocation2404 promise: ' + JSON.stringify(data));
                expect(data.length).assertEqual(0);
            }).catch(error => {
                console.info("[lbs_js] getAddressesFromLocation2404 promise then error." + JSON.stringify(error));
Q
quanli 已提交
356
                expect(true).assertFalse();
Q
quanli 已提交
357 358
            });
        } catch (error) {
Q
quanli 已提交
359
            console.info("[lbs_js] getAddressesFromLocation message." + JSON.stringify(error));
Q
quanli 已提交
360 361
            expect(true).assertEqual((JSON.stringify(error.message)) != null);
        }
Q
quanli 已提交
362
        await sleep(1000);
Q
quanli 已提交
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
        done();
    })


    /**
     * @tc.number SUB_HSS_LocationSystem_Geo_2500
     * @tc.name TestgetAddressesFromLocation
     * @tc.desc Reverse address resolution test.
     * @tc.size MEDIUM
     * @tc.type Function
     * @tc.level Level 2
     */
    it('SUB_HSS_LocationSystem_Geo_2500', 0, async function (done) {
        let geocodeRequest = {
            "description": "上海市浦东新区金穗路1800号",
            "maxItems": 1,
            "locale": "zh",
        };
        try {
            geolocationm.getAddressesFromLocationName(geocodeRequest, (err, data) => {
                if (err) {
                    switch (err) {
                        case 100:
                            console.info("NOT_SUPPORTED: " + JSON.stringify(err));
                            break;
                        case 101:
                            console.info("INPUT_PARAMS_ERROR: " + JSON.stringify(err));
                            break;
                        case 102:
                            console.info("REVERSE_GEOCODE_ERROR: " + JSON.stringify(err));
                            break;
                        case 103:
                            console.info("GEOCODE_ERROR: " + JSON.stringify(err));
                            break;
                        case 104:
                            console.info("LOCATOR_ERROR: " + JSON.stringify(err));
                            break;
                        case 105:
                            console.info("LOCATION_SWITCH_ERROR: " + JSON.stringify(err));
                            break;
                        case 106:
                            console.info("LAST_KNOWN_LOCATION_ERROR: " + JSON.stringify(err));
                            break;
                        case 107:
                            console.info("LOCATION_REQUEST_TIMEOUT_ERROR: " + JSON.stringify(err));
                            break;
                        case 108:
                            console.info("QUERY_COUNTRY_CODE_ERROR: " + JSON.stringify(err));
                            break;
                        default:
                            console.info('getAddressesFromLocationName callback err: ' + JSON.stringify(err));
                    }
                } else {
                    console.info("[lbs_js] getAddressesFromLocationName08 callback data is: " + JSON.stringify(data));
                }
                done();
            });
        }catch(error){
            console.info("[lbs_js] getAddressesFromLocationName08 message." + JSON.stringify(error.message));
Q
quanli 已提交
422
            expect(true).assertFalse();
Q
quanli 已提交
423
        }
Q
quanli 已提交
424
        await sleep(1000);
Q
quanli 已提交
425 426 427 428 429 430 431 432 433 434 435 436
        done();
    })

    /**
     * @tc.number SUB_HSS_LocationSystem_Geo_2600
     * @tc.name TestgetAddressesFromLocation
     * @tc.desc Reverse address resolution test.
     * @tc.size MEDIUM
     * @tc.type Function
     * @tc.level Level 2
     */
    it('SUB_HSS_LocationSystem_Geo_2600', 0, async function (done) {
Q
quanli 已提交
437
        let geocodeRequest = { "description": "上海市浦东新区金穗路1800号", "maxItems": 3 };
Q
quanli 已提交
438 439 440 441 442 443
        try {
            await geolocationm.getAddressesFromLocationName(geocodeRequest).then((result) => {
                console.info("[lbs_js] getAddressesFromLocation09 callback data is:" + JSON.stringify(result));
                expect(true).assertEqual((JSON.stringify(result)) != null);
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName09 promise then error." + JSON.stringify(error));
Q
quanli 已提交
444 445
                console.info('[lbs_js] not support now');
                expect(error.code).assertEqual(801);
Q
quanli 已提交
446 447 448
            });
        } catch (error) {
            console.info("[lbs_js] getAddressesFromLocationName26 try err." + JSON.stringify(error));
Q
quanli 已提交
449
            expect(true).assertFalse();
Q
quanli 已提交
450
        }
Q
quanli 已提交
451
        await sleep(1000);
Q
quanli 已提交
452 453 454 455 456 457 458 459 460 461 462 463
        done();
    })

    /**
     * @tc.number SUB_HSS_LocationSystem_Geo_2700
     * @tc.name TestgetAddressesFromLocation
     * @tc.desc Obtaining Multiple Locations Using the Reverse Address Resolution Function.
     * @tc.size MEDIUM
     * @tc.type Function
     * @tc.level Level 2
     */
    it('SUB_HSS_LocationSystem_Geo_2700', 0, async function (done) {
Q
quanli 已提交
464 465 466 467 468 469 470 471
        try {
            let geocodeRequest = { "description": "上海市浦东新区金穗路1800号", "maxItems": 5 };
            await geolocationm.getAddressesFromLocationName(geocodeRequest).then((result) => {
                console.info("[lbs_js]  getAddressesFromLocation10 promise data is:" + JSON.stringify(result));
                expect(true).assertEqual((JSON.stringify(result)) != null);
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName10 promise then error." + JSON.stringify(error));
                console.info('[lbs_js] not support now');
Q
quanli 已提交
472
                expect(error.code).assertEqual(801);
Q
quanli 已提交
473 474 475
            });
        } catch (error) {
            console.info("[lbs_js] getAddressesFromLocationName27 try err." + JSON.stringify(error));
Q
quanli 已提交
476
            expect(true).assertFalse();
Q
quanli 已提交
477
        }
Q
quanli 已提交
478
        await sleep(1000);
Q
quanli 已提交
479 480 481 482 483 484 485 486 487 488
        done();
    })

    /**
     * @tc.number SUB_HSS_LocationSystem_Geo_2800
     * @tc.name TestgetAddressesFromLocation
     * @tc.desc Invalid parameter input test for the reverse address resolution function.
     * @tc.size MEDIUM
     * @tc.type Function
     * @tc.level Level 2
Q
quanli 已提交
489
     需要实测!!!!
Q
quanli 已提交
490 491 492 493 494 495 496 497 498
     */
    it('SUB_HSS_LocationSystem_Geo_2800', 0, async function (done) {
        try {
            let geocodeRequest = { "description": "", "maxItems": 1 };
            await geolocationm.getAddressesFromLocationName(geocodeRequest).then((result) => {
                console.info("[lbs_js]  getAddressesFromLocation111  promise data is:" + JSON.stringify(result));
                expect(true).assertEqual((JSON.stringify(result)) != null);
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName111 promise then error." + JSON.stringify(error));
Q
quanli 已提交
499
                expect(true).assertFalse();
Q
quanli 已提交
500 501 502
            });
        }catch(error){
            console.info("[lbs_js] getAddressesFromLocationName111 message." + JSON.stringify(error.message));
Q
quanli 已提交
503
            expect(error.code).assertEqual("401");
Q
quanli 已提交
504
        }
Q
quanli 已提交
505
        await sleep(1000);
Q
quanli 已提交
506 507 508 509 510 511 512
        let geocodeRequest1 = { "description": null, "maxItems": 1 };
        try {
            await geolocationm.getAddressesFromLocationName(geocodeRequest1).then((result) => {
                console.info("[lbs_js]  getAddressesFromLocationName112 promise data is:" + JSON.stringify(result));
                expect(result.length == 0).assertTrue();
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName112 promise then error." + JSON.stringify(error));
Q
quanli 已提交
513
                expect(true).assertFalse();
Q
quanli 已提交
514 515 516
            });
        }catch(error){
            console.info("[lbs_js] getAddressesFromLocationName112 message." + JSON.stringify(error.message));
Q
quanli 已提交
517
            expect(error.code).assertEqual("401");
Q
quanli 已提交
518
        }
Q
quanli 已提交
519
        await sleep(1000);
Q
quanli 已提交
520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
        done();
    })

    /**
     * @tc.number SUB_HSS_LocationSystem_Geo_2900
     * @tc.name TestgetAddressesFromLocation
     * @tc.desc Test the reverse address resolution function in the specified range..
     * @tc.size MEDIUM
     * @tc.type Function
     * @tc.level Level 2
     */
    it('SUB_HSS_LocationSystem_Geo_2900', 0, async function (done) {
        let geocodeRequest = {
            "description": "上海金穗路1800号",
            "maxItems": 1,
            "minLatitude": 31.3082812847,
            "minLongitude": 121.5782001832,
            "maxLatitude": 31.1537977881,
            "maxLongitude": 121.8026736943
        };
Q
quanli 已提交
540 541 542 543 544 545 546
        try {
            await geolocationm.getAddressesFromLocationName(geocodeRequest).then((result) => {
                console.info("[lbs_js] getAddressesFromLocation29 promise data is:" + JSON.stringify(result));
                expect(true).assertEqual((JSON.stringify(result)) != null);
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName29 promise then error." + JSON.stringify(error));
                console.info('[lbs_js] not support now');
Q
quanli 已提交
547
                expect(error.code).assertEqual(801);
Q
quanli 已提交
548 549 550
            });
        } catch (error) {
            console.info("[lbs_js] getAddressesFromLocationName29 try err." + JSON.stringify(error));
Q
quanli 已提交
551
            expect(true).assertFalse();
Q
quanli 已提交
552
        }
Q
quanli 已提交
553
        await sleep(1000);
Q
quanli 已提交
554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
        done();
    })

    /**
     * @tc.number SUB_HSS_LocationSystem_Geo_3000
     * @tc.name TestgetAddressesFromLocation
     * @tc.desc Invalid input parameter test for the reverse address resolution function in the specified range
     *          -Invalid location name.
     * @tc.size MEDIUM
     * @tc.type Function
     * @tc.level Level 2
     */
    it('SUB_HSS_LocationSystem_Geo_3000', 0, async function (done) {
        let geocodeRequest = {
            "description": "",
            "maxItems": 1,
            "minLatitude": 331.3082812847,
            "minLongitude": 121.5782001832,
            "maxLatitude": 31.1537977881,
            "maxLongitude": 121.8026736943
        };
        try {
            await geolocationm.getAddressesFromLocationName(geocodeRequest).then((result) => {
                console.info("[lbs_js] getAddressesFromLocationName301 promise data is:" + JSON.stringify(result));
                expect(result.length == 0).assertTrue();
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName301 promise then error." + JSON.stringify(error));
Q
quanli 已提交
581
                expect(true).assertFalse();
Q
quanli 已提交
582 583 584
            });
        }catch(error){
            console.info("[lbs_js] getAddressesFromLocationName301 message." + JSON.stringify(error.message));
Q
quanli 已提交
585
            expect(error.code).assertEqual("401");
Q
quanli 已提交
586
        }
Q
quanli 已提交
587
        await sleep(1000);
Q
quanli 已提交
588 589 590 591 592 593 594 595 596 597 598 599 600 601
        let geocodeRequest1 = {
            "description": null,
            "maxItems": 1,
            "minLatitude": 331.3082812847,
            "minLongitude": 121.5782001832,
            "maxLatitude": 31.1537977881,
            "maxLongitude": 121.8026736943
        };
        try {
            await geolocationm.getAddressesFromLocationName(geocodeRequest1).then((result) => {
                console.info("[lbs_js] getAddressesFromLocationName302 promise data is:" + JSON.stringify(result));
                expect(result.length == 0).assertTrue();
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName302 promise then error." + JSON.stringify(error));
Q
quanli 已提交
602 603
                expect(true).assertFalse();

Q
quanli 已提交
604 605 606
            });
        }catch(error){
            console.info("[lbs_js] getAddressesFromLocationName302 message." + JSON.stringify(error.message));
Q
quanli 已提交
607
            expect(error.code).assertEqual("401");
Q
quanli 已提交
608
        }
Q
quanli 已提交
609
        await sleep(1000);
Q
quanli 已提交
610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630
        done();
    })

    /**
     * @tc.number SUB_HSS_LocationSystem_Geo_3100
     * @tc.name TestgetAddressesFromLocation
     * @tc.desc Invalid input parameter test for the reverse address resolution function in the specified range
     *          - the address is not in the range.
     * @tc.size MEDIUM
     * @tc.type Function
     * @tc.level Level 2
     */
    it('SUB_HSS_LocationSystem_Geo_3100', 0, async function (done) {
        let geocodeRequest = {
            "description": "北京天安门",
            "maxItems": 1,
            "minLatitude": 40.85,
            "minLongitude": 116.35,
            "maxLatitude": 40.95,
            "maxLongitude": 116.45
        };
Q
quanli 已提交
631 632 633 634 635 636
        try {
            await geolocationm.getAddressesFromLocationName(geocodeRequest).then((result) => {
                console.info("[lbs_js] getAddressesFromLocationName31 promise data is:" + JSON.stringify(result));
                expect(result.length >= 0).assertTrue();
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName31 promise then error." + JSON.stringify(error));
Q
quanli 已提交
637
                expect(error.code).assertEqual(801);
Q
quanli 已提交
638 639 640
            });
        } catch (error) {
            console.info("[lbs_js] getAddressesFromLocationName31 message." + JSON.stringify(error));
Q
quanli 已提交
641
            expect(error.code).assertEqual("401");
Q
quanli 已提交
642
        }
Q
quanli 已提交
643
        await sleep(1000);
Q
quanli 已提交
644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664
        done();
    })

    /**
     * @tc.number SUB_HSS_LocationSystem_Geo_3200
     * @tc.name TestgetAddressesFromLocation
     * @tc.desc Invalid longitude and latitude entered for the reverse address resolution
     *          function in the specified range. The longitude and latitude range boundary is inverted..
     * @tc.size MEDIUM
     * @tc.type Function
     * @tc.level Level 2
     */
    it('SUB_HSS_LocationSystem_Geo_3200', 0, async function (done) {
        let geocodeRequest = {
            "description": "北京天安门",
            "maxItems": 1,
            "minLatitude": 39.95,
            "minLongitude": 116.45,
            "maxLatitude": 39.85,
            "maxLongitude": 116.35
        };
Q
quanli 已提交
665 666 667 668 669 670 671
        try {
            await geolocationm.getAddressesFromLocationName(geocodeRequest).then((result) => {
                console.info("[lbs_js]  getAddressesFromLocationName32 promise data is:" + JSON.stringify(result));
                expect(result.length >= 0).assertTrue();
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName32 promise then error." + JSON.stringify(error));
                console.info('[lbs_js] not support now');
Q
quanli 已提交
672
                expect(error.code).assertEqual(801);
Q
quanli 已提交
673 674 675
            });
        } catch (error) {
            console.info("[lbs_js] getAddressesFromLocationName32 message." + JSON.stringify(error));
Q
quanli 已提交
676
            expect(error.code).assertEqual("401");
Q
quanli 已提交
677
        }
Q
quanli 已提交
678
        await sleep(1000);
Q
quanli 已提交
679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705
        done();
    })

    /**
     * @tc.number SUB_HSS_LocationSystem_Geo_3300
     * @tc.name TestgetAddressesFromLocation
     * @tc.desc Input parameter boundary test for the reverse address resolution function in a specified range.
     * @tc.size MEDIUM
     * @tc.type Function
     * @tc.level Level 2
     */
    it('SUB_HSS_LocationSystem_Geo_3300', 0, async function (done) {
        let geocodeRequest1 = {
            "description": "上海金穗路1800号",
            "maxItems": 1,
            "minLatitude": -90,
            "minLongitude": 121.5782001832,
            "maxLatitude": 31.1537977881,
            "maxLongitude": 121.8026736943
        };
        try{
            await geolocationm.getAddressesFromLocationName(geocodeRequest1).then((result) => {
                console.info("[lbs_js] getAddressesFromLocationName33 promise1:" + JSON.stringify(result));
                expect(true).assertEqual((JSON.stringify(result)) != null);
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName33 promise1 then error." + JSON.stringify(error));
                console.info('[lbs_js] not support now');
Q
quanli 已提交
706
                expect(error.code).assertEqual(801);
Q
quanli 已提交
707 708 709
            });
        }catch(error){
            console.info("[lbs_js] getAddressesFromLocationName33 message1." + JSON.stringify(error.message));
Q
quanli 已提交
710
            expect(true).assertFalse();
Q
quanli 已提交
711
        }
Q
quanli 已提交
712
        await sleep(1000);
Q
quanli 已提交
713 714 715 716 717 718 719 720 721 722 723 724 725 726 727
        let geocodeRequest2 = {
            "description": "上海金穗路1800号",
            "maxItems": 1,
            "minLatitude": 90,
            "minLongitude": 121.5782001832,
            "maxLatitude": 31.1537977881,
            "maxLongitude": 121.8026736943
        };
        try{
            await geolocationm.getAddressesFromLocationName(geocodeRequest2).then((result) => {
                console.info("[lbs_js] getAddressesFromLocationName33 promise2: " + JSON.stringify(result));
                expect(true).assertEqual((JSON.stringify(result)) != null);
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName33 promise2 then error." + JSON.stringify(error));
                console.info('[lbs_js] not support now');
Q
quanli 已提交
728
                expect(error.code).assertEqual(801);
Q
quanli 已提交
729 730 731
            });
        }catch(error){
            console.info("[lbs_js] getAddressesFromLocationName33 message2." + JSON.stringify(error.message));
Q
quanli 已提交
732
            expect(true).assertFalse();
Q
quanli 已提交
733
        }
Q
quanli 已提交
734
        await sleep(1000);
Q
quanli 已提交
735 736 737 738 739 740 741 742 743 744 745 746 747 748
        let geocodeRequest3 = {
            "description": "上海金穗路1800号",
            "maxItems": 1,
            "minLatitude": -90.1,
            "minLongitude": 121.5782001832,
            "maxLatitude": 31.1537977881,
            "maxLongitude": 121.8026736943
        };
        try{
            await geolocationm.getAddressesFromLocationName(geocodeRequest3).then((result) => {
                console.info("[lbs_js] getAddressesFromLocationName33 promise3: " + JSON.stringify(result));
                expect(true).assertEqual((JSON.stringify(result)) == null);
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName33 promise3 then error." + JSON.stringify(error));
Q
quanli 已提交
749
                expect(true).assertFalse();
Q
quanli 已提交
750 751 752
            });
        }catch(error){
            console.info("[lbs_js] getAddressesFromLocationName33 message3." + JSON.stringify(error.message));
Q
quanli 已提交
753
            expect(error.code).assertEqual("401");
Q
quanli 已提交
754
        }
Q
quanli 已提交
755
        await sleep(1000);
Q
quanli 已提交
756 757 758 759 760 761 762 763 764 765 766 767 768 769 770
        let geocodeRequest4 = {
            "description": "上海金穗路1800号",
            "maxItems": 1,
            "minLatitude": 90.1,
            "minLongitude": 121.5782001832,
            "maxLatitude": 31.1537977881,
            "maxLongitude": 121.8026736943
        };
        try{
            await geolocationm.getAddressesFromLocationName(geocodeRequest4).then((result) => {
                console.info("[lbs_js] getAddressesFromLocationName33 promise4: " + JSON.stringify(result));
                console.info('[lbs_js] not support now');
                expect(true).assertEqual(JSON.stringify(error) != null);
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName33 promise4 then error." + JSON.stringify(error));
Q
quanli 已提交
771
                expect(true).assertFalse();
Q
quanli 已提交
772 773 774
            });
        }catch(error){
            console.info("[lbs_js] getAddressesFromLocationName33 message4." + JSON.stringify(error.message));
Q
quanli 已提交
775
            expect(error.code).assertEqual("401");
Q
quanli 已提交
776
        }
Q
quanli 已提交
777
        await sleep(1000);
Q
quanli 已提交
778 779 780 781 782 783 784 785 786 787 788 789 790 791 792
        let geocodeRequest5 = {
            "description": "上海金穗路1800号",
            "maxItems": 1,
            "minLatitude": 31.3082812847,
            "minLongitude": 121.5782001832,
            "maxLatitude": -90,
            "maxLongitude": 121.8026736943
        };
        try {
            await geolocationm.getAddressesFromLocationName(geocodeRequest5).then((result) => {
                console.info("[lbs_js] getAddressesFromLocationName33 promise5: " + JSON.stringify(result));
                expect(true).assertEqual((JSON.stringify(result)) != null);
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName33 promise5 then error." + JSON.stringify(error));
                console.info('[lbs_js] not support now');
Q
quanli 已提交
793
                expect(error.code).assertEqual(801);
Q
quanli 已提交
794 795 796
            });
        }catch(error){
            console.info("[lbs_js] getAddressesFromLocationName33 message5." + JSON.stringify(error.message));
Q
quanli 已提交
797
            expect(true).assertFalse();
Q
quanli 已提交
798
        }
Q
quanli 已提交
799
        await sleep(1000);
Q
quanli 已提交
800 801 802 803 804 805 806 807 808 809 810 811 812 813 814
        let geocodeRequest6 = {
            "description": "上海金穗路1800号",
            "maxItems": 1,
            "minLatitude": 31.3082812847,
            "minLongitude": 121.5782001832,
            "maxLatitude": 90,
            "maxLongitude": 121.8026736943
        };
        try{
            await geolocationm.getAddressesFromLocationName(geocodeRequest6).then((result) => {
                console.info("[lbs_js] getAddressesFromLocationName33 promise6: " + JSON.stringify(result));
                expect(true).assertEqual((JSON.stringify(result)) != null);
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName33 promise6 then error." + JSON.stringify(error));
                console.info('[lbs_js] not support now');
Q
quanli 已提交
815
                expect(error.code).assertEqual(801);
Q
quanli 已提交
816 817 818
            });
        }catch(error){
            console.info("[lbs_js] getAddressesFromLocationName33 message6." + JSON.stringify(error.message));
Q
quanli 已提交
819
            expect(true).assertFalse();
Q
quanli 已提交
820
        }
Q
quanli 已提交
821
        await sleep(1000);
Q
quanli 已提交
822 823 824 825 826 827 828 829 830 831 832 833 834 835
        let geocodeRequest7 = {
            "description": "上海金穗路1800号",
            "maxItems": 1,
            "minLatitude": 31.3082812847,
            "minLongitude": 121.5782001832,
            "maxLatitude": -90.1,
            "maxLongitude": 121.8026736943
        };
        try{
            await geolocationm.getAddressesFromLocationName(geocodeRequest7).then((result) => {
                console.info("[lbs_js] getAddressesFromLocationName33 promise7: " + JSON.stringify(result));
                expect(true).assertEqual((JSON.stringify(result)) == null);
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName33 promise7 then error." + JSON.stringify(error));
Q
quanli 已提交
836
                expect(true).assertFalse();
Q
quanli 已提交
837 838 839
            });
        }catch(error){
            console.info("[lbs_js] getAddressesFromLocationName33 message7." + JSON.stringify(error.message));
Q
quanli 已提交
840
            expect(error.code).assertEqual("401");
Q
quanli 已提交
841
        }
Q
quanli 已提交
842
        await sleep(1000);
Q
quanli 已提交
843 844 845 846 847 848 849 850 851 852 853 854 855 856
        let geocodeRequest8 = {
            "description": "上海金穗路1800号",
            "maxItems": 1,
            "minLatitude": 31.3082812847,
            "minLongitude": 121.5782001832,
            "maxLatitude": 90.1,
            "maxLongitude": 121.8026736943
        };
        try{
            await geolocationm.getAddressesFromLocationName(geocodeRequest8).then((result) => {
                console.info("[lbs_js] getAddressesFromLocationName33 promise8: " + JSON.stringify(result));
                expect(true).assertEqual((JSON.stringify(result)) == null);
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName33 promise8 then error." + JSON.stringify(error));
Q
quanli 已提交
857
                expect(true).assertFalse();
Q
quanli 已提交
858 859 860
            });
        }catch(error){
            console.info("[lbs_js] getAddressesFromLocationName33 message8." + JSON.stringify(error.message));
Q
quanli 已提交
861
            expect(error.code).assertEqual("401");
Q
quanli 已提交
862
        }
Q
quanli 已提交
863
        await sleep(1000);
Q
quanli 已提交
864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890
        done();
    })

    /**
     * @tc.number SUB_HSS_LocationSystem_Geo_3400
     * @tc.name TestgetAddressesFromLocation
     * @tc.desc Longitude input parameter boundary test for the reverse address resolution function in a specified range
     * @tc.size MEDIUM
     * @tc.type Function
     * @tc.level Level 2
     */
    it('SUB_HSS_LocationSystem_Geo_3400', 0, async function (done) {
        let geocodeRequest1 = {
            "description": "北京天安门",
            "maxItems": 1,
            "minLatitude": 39.85,
            "minLongitude": -180,
            "maxLatitude": 39.95,
            "maxLongitude": 116.45
        };
        try{
            await geolocationm.getAddressesFromLocationName(geocodeRequest1).then((result) => {
                console.info("[lbs_js] getAddressesFromLocationName34 promise1: " + JSON.stringify(result));
                expect(true).assertEqual((JSON.stringify(result)) != null);
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName34 promise1 then error." + JSON.stringify(error));
                console.info('[lbs_js] not support now');
Q
quanli 已提交
891
                expect(error.code).assertEqual(801);
Q
quanli 已提交
892 893 894
            });
        }catch(error){
            console.info("[lbs_js] getAddressesFromLocationName34 message1." + JSON.stringify(error.message));
Q
quanli 已提交
895
            expect(true).assertFalse();
Q
quanli 已提交
896
        }
Q
quanli 已提交
897
        await sleep(1000);
Q
quanli 已提交
898 899 900 901 902 903 904 905 906 907 908 909 910 911
        let geocodeRequest2 = {
            "description": "北京天安门",
            "maxItems": 1,
            "minLatitude": 39.85,
            "minLongitude": 180,
            "maxLatitude": 39.95,
            "maxLongitude": 116.45
        };
        try{
            await geolocationm.getAddressesFromLocationName(geocodeRequest2).then((result) => {
                console.info("[lbs_js] getAddressesFromLocationName34 promise2: " + JSON.stringify(result));
                expect(true).assertEqual((JSON.stringify(result)) != null);
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName34 promise2 then error." + JSON.stringify(error));
Q
quanli 已提交
912 913
                console.info('[lbs_js] not support now');
                expect(error.code).assertEqual(801);
Q
quanli 已提交
914 915 916
            });
        }catch(error){
            console.info("[lbs_js] getAddressesFromLocationName34 message2." + JSON.stringify(error.message));
Q
quanli 已提交
917
            expect(true).assertFalse();
Q
quanli 已提交
918
        }
Q
quanli 已提交
919
        await sleep(1000);
Q
quanli 已提交
920 921 922 923 924 925 926 927 928 929 930 931 932 933
        let geocodeRequest3 = {
            "description": "北京天安门",
            "maxItems": 1,
            "minLatitude": 39.85,
            "minLongitude": -180.1,
            "maxLatitude": 39.95,
            "maxLongitude": 116.45
        };
        try{
            await geolocationm.getAddressesFromLocationName(geocodeRequest3).then((result) => {
                console.info("[lbs_js] getAddressesFromLocationName34 promise3: " + JSON.stringify(result));
                expect(true).assertEqual((JSON.stringify(result)) != null);
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName34 promise3 then error." + JSON.stringify(error));
Q
quanli 已提交
934
                expect(true).assertFalse();
Q
quanli 已提交
935 936 937
            });
        }catch(error){
            console.info("[lbs_js] getAddressesFromLocationName34 message3." + JSON.stringify(error.message));
Q
quanli 已提交
938
            expect(error.code).assertEqual("401");
Q
quanli 已提交
939
        }
Q
quanli 已提交
940
        await sleep(1000);
Q
quanli 已提交
941 942 943 944 945 946 947 948 949 950 951 952 953 954
        let geocodeRequest4 = {
            "description": "北京天安门",
            "maxItems": 1,
            "minLatitude": 39.85,
            "minLongitude": 180.1,
            "maxLatitude": 39.95,
            "maxLongitude": 116.45
        };
        try{
            await geolocationm.getAddressesFromLocationName(geocodeRequest4).then((result) => {
                console.info("[lbs_js] getAddressesFromLocationName34 promise4: " + JSON.stringify(result));
                expect(true).assertEqual((JSON.stringify(result)) != null);
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName34 promise4 then error." + JSON.stringify(error));
Q
quanli 已提交
955
                expect(true).assertFalse();
Q
quanli 已提交
956 957 958
            });
        }catch(error){
            console.info("[lbs_js] getAddressesFromLocationName34 message4." + JSON.stringify(error.message));
Q
quanli 已提交
959
            expect(error.code).assertEqual("401");
Q
quanli 已提交
960
        }
Q
quanli 已提交
961
        await sleep(1000);
Q
quanli 已提交
962 963 964 965 966 967 968 969 970 971 972 973 974 975
        let geocodeRequest5 = {
            "description": "北京天安门",
            "maxItems": 1,
            "minLatitude": 39.85,
            "minLongitude": 116.35,
            "maxLatitude": 39.95,
            "maxLongitude": -180
        };
        try{
            await geolocationm.getAddressesFromLocationName(geocodeRequest5).then((result) => {
                console.info("[lbs_js] getAddressesFromLocationName34 promise5: " + JSON.stringify(result));
                expect(true).assertEqual((JSON.stringify(result)) != null);
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName34 promise5 then error." + JSON.stringify(error));
Q
quanli 已提交
976 977
                console.info('[lbs_js] not support now');
                expect(error.code).assertEqual(801);
Q
quanli 已提交
978 979 980
            });
        }catch(error){
            console.info("[lbs_js] getAddressesFromLocationName34 message5." + JSON.stringify(error.message));
Q
quanli 已提交
981
            expect(true).assertFalse();
Q
quanli 已提交
982 983 984 985 986 987 988 989 990 991 992 993 994 995 996
        }
        let geocodeRequest6 = {
            "description": "北京天安门",
            "maxItems": 1,
            "minLatitude": 39.85,
            "minLongitude": 116.35,
            "maxLatitude": 39.95,
            "maxLongitude": 180
        };
        try{
            await geolocationm.getAddressesFromLocationName(geocodeRequest6).then((result) => {
                console.info("[lbs_js] getAddressesFromLocationName34 promise6: " + JSON.stringify(result));
                expect(true).assertEqual((JSON.stringify(result)) != null);
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName34 promise6 then error." + JSON.stringify(error));
Q
quanli 已提交
997 998
                console.info('[lbs_js] not support now');
                expect(error.code).assertEqual(801);
Q
quanli 已提交
999 1000 1001
            });
        }catch(error){
            console.info("[lbs_js] getAddressesFromLocationName34 message6." + JSON.stringify(error.message));
Q
quanli 已提交
1002
            expect(true).assertFalse();
Q
quanli 已提交
1003
        }
Q
quanli 已提交
1004
        await sleep(1000);
Q
quanli 已提交
1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018
        let geocodeRequest7 = {
            "description": "北京天安门",
            "maxItems": 1,
            "minLatitude": 39.85,
            "minLongitude": 116.35,
            "maxLatitude": 39.95,
            "maxLongitude": -180.1
        };
        try{
            await geolocationm.getAddressesFromLocationName(geocodeRequest7).then((result) => {
                console.info("[lbs_js] getAddressesFromLocationName34 promise7: " + JSON.stringify(result));
                expect(true).assertEqual((JSON.stringify(result)) != null);
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName34 promise7 then error." + JSON.stringify(error));
Q
quanli 已提交
1019
                expect(true).assertFalse();
Q
quanli 已提交
1020 1021 1022
            });
        }catch(error){
            console.info("[lbs_js] getAddressesFromLocationName34 message7." + JSON.stringify(error.message));
Q
quanli 已提交
1023
            expect(error.code).assertEqual("401");
Q
quanli 已提交
1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038
        }
        let geocodeRequest8 = {
            "description": "北京天安门",
            "maxItems": 1,
            "minLatitude": 39.85,
            "minLongitude": 116.35,
            "maxLatitude": 39.95,
            "maxLongitude": 180.1
        };
        try{
            await geolocationm.getAddressesFromLocationName(geocodeRequest8).then((result) => {
                console.info("[lbs_js] getAddressesFromLocationName34 promise8: " + JSON.stringify(result));
                expect(true).assertEqual((JSON.stringify(result)) != null);
            }).catch((error) => {
                console.info("[lbs_js] getAddressesFromLocationName34 promise8 then error." + JSON.stringify(error));
Q
quanli 已提交
1039
                expect(true).assertFalse();
Q
quanli 已提交
1040 1041 1042
            });
        }catch(error){
            console.info("[lbs_js] getAddressesFromLocationName34 message8." + JSON.stringify(error.message));
Q
quanli 已提交
1043
            expect(error.code).assertEqual("401");
Q
quanli 已提交
1044
        }
Q
quanli 已提交
1045
        await sleep(1000);
Q
quanli 已提交
1046 1047
        done();
    })
Q
quanli 已提交
1048

Q
quanli 已提交
1049 1050


Q
quanli 已提交
1051 1052 1053 1054
    })
}