Skip to content

Commit fd66f91

Browse files
committed
add phpunit tests and fix some spaces
1 parent be7a666 commit fd66f91

9 files changed

+612
-478
lines changed

.gitattributes

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.gitattributes export-ignore
2+
.gitignore export-ignore
3+
.travis.yml export-ignore
4+
phpcs.xml export-ignore
5+
tests export-ignore
6+
README.md export-ignore
7+
phpunit.xml export-ignore

class-elementor-extra-widgets.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class ElementorExtraWidgets {
1616
/**
1717
* @var ElementorExtraWidgets
1818
*/
19-
protected static $instance = null;
19+
public static $instance = null;
2020

2121
/**
2222
* The version of this library
@@ -48,7 +48,7 @@ public function add_elementor_category() {
4848
\Elementor\Plugin::instance()->elements_manager->add_category(
4949
'obfx-elementor-widgets',
5050
array(
51-
'title' => __( 'Orbit Fox Addons', 'themeisle-companion' ),
51+
'title' => __( 'Orbit Fox Addons', 'textdomain' ),
5252
'icon' => 'fa fa-plug',
5353
),
5454
1

composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "codeinwp/elementor-extra-widgets",
33
"type": "library",
4+
"version": "1.0.0",
45
"license": "GPL-3.0-or-later",
56
"minimum-stability": "dev",
67
"homepage": "https://github.com/Codeinwp/elementor-extra-widgets",

phpunit.xml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<phpunit
2+
bootstrap="tests/bootstrap.php"
3+
backupGlobals="false"
4+
colors="true"
5+
convertErrorsToExceptions="true"
6+
convertNoticesToExceptions="true"
7+
convertWarningsToExceptions="true"
8+
>
9+
<testsuites>
10+
<testsuite>
11+
<directory prefix="test-" suffix=".php">./tests/</directory>
12+
</testsuite>
13+
</testsuites>
14+
</phpunit>

tests/bootstrap.php

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<?php
2+
/**
3+
* PHPUnit bootstrap file
4+
*
5+
* @package ThemeIsle\ElementorExtraWidgets
6+
*/
7+
8+
/**
9+
* change PLUGIN_FILE env in phpunit.xml
10+
*/
11+
define( 'PLUGIN_FILE', getenv( 'PLUGIN_FILE' ) );
12+
define( 'PLUGIN_FOLDER', basename( dirname( __DIR__ ) ) );
13+
define( 'PLUGIN_PATH', PLUGIN_FOLDER . '/' . PLUGIN_FILE );
14+
15+
// Activates this plugin in WordPress so it can be tested.
16+
$GLOBALS['wp_tests_options'] = [
17+
'active_plugins' => [ PLUGIN_PATH ],
18+
'template' => 'twentysixteen',
19+
'stylesheet' => 'twentysixteen',
20+
];
21+
22+
// Determine the tests directory (from a WP dev checkout).
23+
// Try the WP_TESTS_DIR environment variable first.
24+
$_tests_dir = getenv( 'WP_TESTS_DIR' );
25+
26+
// See if we're installed inside an existing WP dev instance.
27+
if ( ! $_tests_dir ) {
28+
$_try_tests_dir = dirname( __FILE__ ) . '/../../../../../tests/phpunit';
29+
if ( file_exists( $_try_tests_dir . '/includes/functions.php' ) ) {
30+
$_tests_dir = $_try_tests_dir;
31+
}
32+
}
33+
// Fallback.
34+
if ( ! $_tests_dir ) {
35+
$_tests_dir = '/tmp/wordpress-tests-lib';
36+
}
37+
38+
// Give access to tests_add_filter() function.
39+
require_once $_tests_dir . '/includes/functions.php';
40+
41+
/**
42+
* Manually load the plugin being tested.
43+
*/
44+
function _manually_load_plugin() {
45+
require dirname( dirname( __FILE__ ) ) . '/load.php';
46+
}
47+
tests_add_filter( 'muplugins_loaded', '_manually_load_plugin' );
48+
49+
// Start up the WP testing environment.
50+
require $_tests_dir . '/includes/bootstrap.php';

tests/test-basics.php

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
<?php
2+
/**
3+
* Basic Tests
4+
*
5+
* @package ThemeIsle\ElementorExtraWidgets
6+
*/
7+
8+
/**
9+
* Test functions in register.php
10+
*/
11+
class Plugin_Test extends WP_UnitTestCase {
12+
13+
public function setUp() {
14+
parent::setUp();
15+
wp_set_current_user( $this->factory->user->create( [ 'role' => 'administrator' ] ) );
16+
17+
do_action( 'init' );
18+
do_action( 'plugins_loaded' );
19+
}
20+
21+
/**
22+
* Tests test_library_availability().
23+
*
24+
* @covers ElementorExtraWidgets::instance();
25+
*/
26+
function test_library_availability() {
27+
$this->assertTrue( class_exists( '\ThemeIsle\ElementorExtraWidgets') );
28+
}
29+
30+
/**
31+
* Test the right type of class instance
32+
*
33+
* @covers ElementorExtraWidgets::instance();
34+
*/
35+
public function test_getInstance() {
36+
$this->assertInstanceOf( '\Themeisle\ElementorExtraWidgets', \Themeisle\ElementorExtraWidgets::instance() );
37+
}
38+
39+
/**
40+
* Test if the library version is the same from the composer.json
41+
*
42+
* @covers ElementorExtraWidgets::$version
43+
*/
44+
function test_version() {
45+
$composer_version = json_decode( file_get_contents( dirname( dirname( __FILE__ ) ) . '/composer.json' ) );
46+
$this->assertTrue( $composer_version->version === \ThemeIsle\ElementorExtraWidgets::$version );
47+
}
48+
49+
/**
50+
* Test if the class enqueues the required assets
51+
* @covers ElementorExtraWidgets::register_assets
52+
*/
53+
public function test_assets_enqueue() {
54+
$this->assertFalse( wp_script_is( 'obfx-grid-js', 'registered' ) );
55+
$this->assertFalse( wp_style_is( 'eaw-elementor', 'registered' ) );
56+
}
57+
58+
/**
59+
* @expectedIncorrectUsage __clone
60+
*/
61+
public function test_Clone() {
62+
$obj_cloned = clone \Themeisle\ElementorExtraWidgets::$instance;
63+
}
64+
65+
/**
66+
* @expectedIncorrectUsage __wakeup
67+
*/
68+
public function test_Wakeup() {
69+
unserialize( serialize( \Themeisle\ElementorExtraWidgets::$instance ) );
70+
}
71+
}

0 commit comments

Comments
 (0)