npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@yasshi2525/jest-environment-akashic

v0.1.4

Published

Sandbox of akashic environment for unit test with jest

Downloads

22

Readme

概要

目的

Akashic Engine を利用したコードのユニットテスト記述・実行支援を目的に、サンドボックス環境を提供します.

特徴

本ライブラリを利用すると、Akashic Engineの機能が混在するクラス・関数に対しても個々の動作を確認しやすくなります. 例えば「自作ロジックを組み込んだ g.Sprite のクリック時の動作」をテストコードとして記述しやすくなります. また、動作中のスナップショットを画像出力することで、意図した通りにテストされているか目視確認もできます.

Q: どうして動作確認をテストコードとして記述するの?

A: 仕様変更時も変更していない従来のコードが正しく動作するか、目視に頼らず自動的にテストできるからです. テストを自動化することで動作確認の手間を減らし、ゲーム開発を効率的に進められます.

Q: すでにあるテスト支援ライブラリ (@akashic-games/headless-akashic) との違いは?

A: @akashic-games/headless-akashic を使うとAkashic Engineを用いたゲームスクリプトをテストできます. しかし、これはゲーム全体を一からスタートさせるため、ゲームの途中部分からの動作確認や一部機能だけのテストがしづらい側面があります.

そこで、特定の処理や特定の条件下での動きといった個々の動作確認をしやすくするため、 Akashic Engineが動作する使い捨ての軽量環境を提供します. 動作環境は自動で再構築されるため、面倒な初期化処理をその都度書く必要はありません.

一方、図形や画像のレンダリングも行われるため、これを画像出力することで目視で動作確認しながらテストコードを記述できます.

インストール方法・利用方法

akashic init して構築したプロジェクトで、下記のコマンドを実行してください.

npm install --dev @yasshi2525/jest-environment-akashic

jest.config.js に下記を追記してください.

module.exports = {
  // ...
  testEnvironment: "@yasshi2525/jest-environment-akashic"
  // ...
}

tsconfig.jsoncompilerOptions.types[] に下記を追記してください.

{
  "compilerOptions": {
    "types": [
      "@yasshi2525/jest-environment-akashic-global"
    ]
  }
}

以上の手順で、テストコード (spec ディレクトリ配下のコード) で下記のグローバル変数が利用できます.

  • g, g.game: 実際のAkashic Engineの実行環境のものが格納されます.
  • scene: 空の g.Scene. テスト単位 (test または it メソッド単位) でリセットされます. 追加したエンティティやハンドラの削除処理を記述する必要はありません.
  • screenshot(filename: string): 現在の画面を画像として出力します. ファイルは ./tmp/screenshot 以下に出力されます.

また、ゲーム進行を制御する以下の @akashic-games/headless-akashic の機能がグローバル変数として利用可能です.

  • gameContext: GameContext<3>
  • gameClient: GameClient<3>

サンプル

TypeScript

テスト対象

src/button.ts

type ButtonStatus = "ON" | "OFF";

/**
 * 押下すると ON, 離すと OFF になるボタン
 */
export class Button extends g.FilledRect {
	private _status: ButtonStatus = "OFF";
	constructor(opts: g.FilledRectParameterObject) {
		super(opts);
		// 押下されると ON
		this.onPointDown.add(() => this.on());
		// 離されると OFF
		this.onPointUp.add(() => this.off());
	}

	/**
	 * ON状態にします
	 */
	on(): void {
		this._status = "ON";
		this.opacity = 0.5;
		this.modified();
	}

	/**
	 * OFF状態にします
	 */
	off(): void {
		this._status = "OFF";
		this.opacity = 1;
		this.modified();
	}

	/**
	 * ボタンの状態を取得します
	 */
	get status(): string {
		return this._status;
	}
}

テストコード

import {Button} from "../src/button";

describe("button", () => {
	it ("on()を実行するとON状態になる", async () => {
		const button = new Button({ scene, width: 100, height: 100, cssColor: "red", touchable: true });
		scene.append(button);
		await gameContext.step();
		button.on();
		expect(button.status).toEqual("ON");
		await gameContext.step();
		screenshot("on.png");
	});
	it("off()を実行するとOFF状態になる", async () => {
		const button = new Button({ scene, width: 100, height: 100, cssColor: "red", touchable: true });
		scene.append(button);
		await gameContext.step();
		button.on();
		button.off();
		expect(button.status).toEqual("OFF");
		await gameContext.step();
		screenshot("off.png");
	});
	it("押下するとON状態になる", async () => {
		const button = new Button({ scene, width: 100, height: 100, cssColor: "red", touchable: true });
		scene.append(button);
		await gameContext.step();
		gameClient.sendPointDown(50, 50, 1);
		await gameContext.step();
		expect(button.status).toEqual("ON");
		await gameContext.step();
		screenshot("down.png");
	});
	it("離すとOFF状態になる", async () => {
		const button = new Button({ scene, width: 100, height: 100, cssColor: "red", touchable: true });
		scene.append(button);
		await gameContext.step();
		gameClient.sendPointDown(50, 50, 1);
		await gameContext.step();
		gameClient.sendPointUp(50, 50, 1);
		await gameContext.step();
		expect(button.status).toEqual("OFF");
		await gameContext.step();
		screenshot("up.png");
	});
});

オプション

jest.config.js に下記を追記することで、設定を変更することができます.

module.exports = {
  // ...
  testEnvironmentOptions: {
    screenshotDir: "<スクリーンショットの出力先>", // 任意, デフォルト値 "./tmp/screenshot"
  }
  // ...
}

既知の問題点

テスト実行後にファイルが存在する

テスト実行時まれに(強制終了時などのタイミングで)下記のファイルが残存します.
もう一度テストを実行すると削除されるので、恐れ入りますがファイル残存時は再テスト実行をお願いします.

.main.fake-*.js
.game.fake-*.json

Author

@yasshi2525 (X)

License

MIT License