8
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

WordPressプラグインのユニットテストにおける依存関係の問題を解決する

Last updated at Posted at 2015-05-16

WordPressプラグインのユニットテストをしていてしばしハマってしまうのが、プラグイン同士が依存関係をもってしまっている場合のテストです。

例えば、作っているプラグインでAdvanced Custom Fieldsの提供している関数が必要としましょう。すると通常のwp scafolled pluginで作られるユニットテストのコードを実行すると関数未定義のエラーとなってしまいます。

それを解決するユニットテストのパターンを作ってGithubに上げました。

tests/dependencies-array.php
<?php
return array(
	'advanced-custom-fields' => array(
		'include' => 'advanced-custom-fields/acf.php',
		'repo' => 'https://downloads.wordpress.org/plugin/advanced-custom-fields.zip',
	)
);

こんな感じで依存関係のあるプラグインを配列で指定してあげるだけで、インストールしてユニットテストを実行してくれます。

それでは良いユニットテストライフを!

8
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?