中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Dojo 測試之基本用法

發布時間:2020-07-05 23:26:50 來源:網絡 閱讀:275 作者:blocklang 欄目:web開發

【翻譯】https://github.com/dojo/framework/blob/master/docs/en/testing/basic-usage.md

Dojo 的 @dojo/cli-test-intern 提供了一個健壯的測試框架。它能高效地測試小部件的輸出并確認是否如你所愿。

功能 描述
極簡 API 用于測試和斷言 Dojo 部件預期的虛擬 DOM 和行為的精簡 API。
單元測試 單元測試是指運行在 node 和瀏覽器上的測試,用于測試獨立的代碼塊。
功能測試 功能測試通過 Selenium 運行在瀏覽器中,模擬用戶與軟件的交互來測試整體功能。
斷言模板 斷言模板能構建期望的渲染函數,以驗證部件的輸出。

測試 Dojo 應用程序

Dojo 使用 @dojo/cli-test-intern 運行 tests 文件夾下的單元測試和功能測試。

你可在 node 中快速運行測試。

命令行

dojo test

運行測試

Dojo 支持兩種類型的測試方法:單元測試和功能測試。單元測試是運行在 node 和本地 Selenium 通道上的測試,用于測試獨立的代碼塊。功能測試通過 Selenium 運行在瀏覽器中,模擬用戶與軟件的交互來測試整體功能。在 Selenium 上運行單元測試和功能測試時,必須先使用 @dojo/cli-build-app 進行適當的構建。

以下命令僅執行單元測試。

命令行

dojo test --unit --config local

以下命令使用 Selenium 在本地的 headless Chrome 實例中運行功能測試。

命令行

dojo test --functional --config local

單元測試

Dojo 自帶用于測試部件的 harness API。

src/tests/unit/widgets/Home.ts

const { describe, it } = intern.getInterface('bdd');
import harness from '@dojo/framework/testing/harness';
import assertionTemplate from '@dojo/framework/testing/assertionTemplate';
import { w, v } from '@dojo/framework/widget-core/d';

import Home from '../../../src/widgets/Home';
import * as css from '../../../src/widgets/styles/Home.m.css';

const baseTemplate = assertionTemplate(() => v('h2', { classes: [css.root] }, ['Home Page']));

describe('Home', () => {
    it('default renders correctly', () => {
        const h = harness(() => w(Home, {}));
        h.expect(baseTemplate);
    });
});

harness API 能讓你核實渲染部件的輸出是否如你所愿。

  • 它是否按預期渲染?
  • 事件處理器是否按預期工作?

功能測試

功能測試允許你加載一個頁面并在瀏覽器中執行你的代碼,以更好的測試部件的行為。

當編寫測試用例時,你可以控制頁面中測試的交互行為,來單擊按鈕并驗證頁面的內容。

tests/functional/main.ts

describe('routing', () => {
    it('profile page correctly loads', ({ remote }) => {
        return (
            remote
                // 在本地的 node 服務器中加載 HTML 文件
                .get('../../output/dev/index.html')
                // 根據 id 找到超鏈接標簽的
                .findById('profile')
                // 單擊鏈接
                .click()
                // 結束此操作
                .end()
                // 找到 h2 標簽
                .findByTagName('h2')
                // 獲取 h2 標簽中的文本
                .getVisibleText()
                .then((text) => {
                    // 核實 profile 頁面中 h2 標簽中的內容
                    assert.equal(text, 'Welcome Dojo User!');
                })
        );
    });
});

斷言模板

斷言模板提供了一種創建基本斷言的方法,該方法允許你在每個測試中修改期望輸出中的部分內容。

一個部件可根據屬性值渲染不同的內容。

src/widgets/Profile.ts

export interface ProfileProperties {
    username?: string;
}

export default class Profile extends WidgetBase<ProfileProperties> {
    protected render() {
        const { username } = this.properties;
        return v('h2', { classes: [css.root] }, [`Welcome ${username || 'Stranger'}!`]);
    }
}

你可以使用 @dojo/framework/testing/assertionTemplate 創建一個斷言模板。

tests/unit/widgets/Profile.ts

// 創建一個斷言
const profileAssertion = assertionTemplate(() =>
    v('h2', { classes: [css.root], '~key': 'welcome' }, ['Welcome Stranger!'])
);

describe('Profile', () => {
    it('default renders correctly', () => {
        const h = harness(() => w(Profile, {}));
        // 基于基本斷言測試
        h.expect(profileAssertion);
    });
});

使用在斷言模板中定義的 ~key 屬性,你可以為任何要測試的虛擬 DOM 提供一個值。在 .tsx 中對應的是 assertion-key 屬性。

tests/unit/widgets/Profile.ts

describe('Profile', () => {
    it('default renders correctly', () => {
        const h = harness(() => w(Profile, {}));
        h.expect(profileAssertion);
    });

    it('renders given username correctly', () => {
        // 使用給定的用戶名更新期望的結果
        const namedAssertion = profileAssertion.setChildren('~welcome', () => ['Welcome Kel Varnsen!']);
        const h = harness(() => w(Profile, { username: 'Kel Varnsen' }));
        h.expect(namedAssertion);
    });
});

使用斷言模板的 setChildren 方法,傳入指定的 ~key 來定位一個虛擬 DOM,并修改該虛擬 DOM 的結構,然后返回更新的斷言模板,你可以基于新的斷言模板測試部件的輸出。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

集贤县| 邓州市| 榆林市| 孟连| 托里县| 永登县| 乌拉特中旗| 仪征市| 吉林省| 日喀则市| 莱西市| 裕民县| 黎川县| 工布江达县| 保靖县| 兴安盟| 建湖县| 安岳县| 保山市| 天津市| 茌平县| 修武县| 禄丰县| 潼关县| 岳池县| 达日县| 修文县| 毕节市| 石首市| 延津县| 大石桥市| 深州市| 堆龙德庆县| 重庆市| 尼木县| 龙川县| 团风县| 焉耆| 永川市| 灵武市| 南丰县|