NativeScript - 测试


测试是应用程序开发生命周期中非常重要的阶段。它确保了应用程序的质量。它需要仔细的计划和执行。这也是开发过程中最耗时的阶段。NativeScript 框架为应用程序的自动化测试提供了广泛的支持。

测试类型

通常,可以使用三种类型的测试过程来测试应用程序。它们如下 -

单元测试

单元测试是测试应用程序的最简单的方法。它基于确保一段代码(通常是一个函数)或一个类的方法的正确性。但是,它并不能反映真实的环境和随后的情况。这是发现 bug 的最少选择。

一般来说,NativeScript 使用 Jasmine、Mocha with Chai 和 QUnit 单元测试框架。

要执行此操作,首先您需要使用以下命令在项目中进行配置 -

tns test init

现在,您会得到以下响应 -

? Select testing framework: (Use arrow keys) 
> jasmine 
   mocha 
   qunit

现在,选择jasmine框架,您的屏幕看起来与此类似 -

? Select testing framework: jasmine 
+ karma@4.4.1 
added 90 packages from 432 contributors and audited 11944 packages in 8.753s 

+ karma-nativescript-launcher@0.4.0 
added 2 packages from 1 contributor and audited 11946 packages in 7.299s 

> core-js@2.6.11 postinstall 
/Users/workspace/NativeScript/NativeApp/node_modules/core-js 

> node -e "try{require('./postinstall')}catch(e){}" 
Thank you for using core-js ( https://github.com/zloirock/core-js ) for 
polyfilling JavaScript standard library! 
The project needs your help! Please consider supporting of core-js on Open 
Collective or Patreon:

> https://opencollective.com/core-js 
> https://www.patreon.com/zloirock 
Also, the author of core-js ( https://github.com/zloirock ) is looking for a 
good job -) 
npm WARN karma-webpack@3.0.5 requires a peer of webpack@^2.0.0 
|| ^3.0.0 but none is installed. You must install peer dependencies yourself. 

+ karma-webpack@3.0.5 
added 19 packages from 52 contributors and audited 12012 packages in 9.368s 

+ karma-jasmine@2.0.1 
added 2 packages from 35 contributors and audited 12014 packages in 6.925s 

+ karma@4.4.1 
updated 1 package and audited 12014 packages in 7.328s 
+ @types/jasmine@3.4.6 

> nativescript-unit-test-runner@0.7.0 postinstall /Users/deiva/workspace/NativeScript/NativeApp/node_modules/nativescript-unit
-test-runner 

> node postinstall.js 
+ nativescript-unit-test-runner@0.7.0 

added 1 package from 1 contributor and audited 12032 packages in 7.14s 
Successfully installed plugin nativescript-unit-test-runner. 

Example test file created in src/tests 
Run your tests using the "$ tns test <platform>" command.

现在,测试文件已在 src\tests\example.ts 中创建。

创建您的测试

让我们在 example.ts 文件中添加一个简单的测试,如下所示 -

describe("NativeApp test:", function() { 
   it("Check counter.", function() { 
      expect(mainViewModel.createViewModel().counter).toEqual(10); 
   }); 
   it("Check message.", function () { 
      expect(mainViewModel.createViewModel().message).toBe("10 taps left"); 
   }); 
});

这里,

首先,检查计数器是否等于 10,并检查消息是否还剩 10 次点击。

让我们在下一步中运行测试。

运行您的测试

现在,使用以下命令在 Android 或 iOS 连接设备中运行测试 -

tns test android

这将返回以下状态 -

? To continue, choose one of the following options: (Use arrow keys) 
> Configure for Cloud Builds 
   Configure for Local Builds 
   Configure for Both Local and Cloud Builds 
   Skip Step and Configure Manually

然后选择以下选项 -

? To continue, choose one of the following options: Configure for Local Builds 
Running the setup script to try and automatically configure your environment. 
These scripts require sudo permissions 
.....

要在 Android 模拟器中执行测试套件,请运行以下命令 -

tns test android --emulator

现在,karma 服务器准备构建并部署您的项目。

端到端 (E2E) 测试

单元测试是小型、简单且快速的过程,而 E2E 测试阶段涉及多个组件并一起工作,涵盖应用程序中的流程。这是单元测试和集成测试无法实现的。

NativeScript Appium插件用于执行E2E自动化测试。Appium 是一个针对移动应用程序的开源测试框架。要在您的项目中添加此框架,您必须拥有最新版本的 XCode 或 Android SDK 25.3.0 以上。

安装Appium

让我们使用 npm 模块全局安装 Appium -

npm install -g appium

现在,您可以看到以下响应 -

npm install -g appium 
/Users/.npm-global/bin/authorize-ios -> 
/Users/.npm-global/lib/node_modules/ appium/node_modules/.bin/authorize-ios 

> appium-windows-driver@1.8.0 install 
/Users/.npm-global/lib/node_modules/ appium/node_modules/appium-windows-driver

> node install-npm.js 
Not installing WinAppDriver since did not detect a Windows system 

> core-js@2.6.11 postinstall /Users/.npm-
global/lib/node_modules/appium/node_modules/core-js 

> node -e "try{require('./postinstall')}catch(e){}" 
Thank you for using core-js ( https://github.com/zloirock/core-js ) for 
polyfilling JavaScript 
standard library! 
The project needs your help! Please consider supporting of core-js on Open Collective or Patreon: 

> https://opencollective.com/core-js 
> https://www.patreon.com/zloirock 
Also, the author of core-js ( https://github.com/zloirock ) 
is looking for a good job -) 

> appium-chromedriver@4.19.0 postinstall/Users/.npm-
global/lib/node_modules/appium/node_modules 
/appium-chromedriver 

> node install-npm.js 
............................................ 
............................................. 
+ appium@1.16.0 
added 671 packages from 487 contributors in 28.889s

添加插件

让我们使用以下命令将nativescript-dev-appium插件作为 devDependency 添加到您的项目中 -

$ npm install -D nativescript-dev-appium

执行此操作后,选择mocha框架,您将得到类似于此的响应 -

> node ./postinstall.js 
? What kind of project do you use
? javascript ? Which testing framework do you prefer? mocha 
+ nativescript-dev-appium@6.1.3

现在,文件存储在您的项目文件夹中。

项目文件夹

构建您的设备

让我们使用以下命令构建 Android 设备 -

tns build android

上面的命令将运行测试,并指定目标功能。如果您有 iOS 设备,则可以使用iOS设备进行构建。

运行测试

现在,我们已经配置了设备。让我们使用以下命令运行测试 -

npm run e2e -- --runType <capability-name>

这里,

Capability-name 在您的应用程序e2e/config/appium.capability.json中定义。

输出

配置

NativeScript - 结论

NativeScript 是一款出色的移动应用程序,可供 Web 开发人员以非常简单的方式完全测试他们的应用程序,而无需付出额外的努力。开发人员可以自信地在短时间内开发出美观且成功的应用程序,不会出现任何问题。