PHP Classes

File: tests/bootstrap.php

Recommend this page to a friend!
  Classes of Josantonius   WP_Plugin-Info   tests/bootstrap.php   Download  
File: tests/bootstrap.php
Role: Example script
Content type: text/plain
Description: Example script
Class: WP_Plugin-Info
Retrieve WordPress plugin information values
Author: By
Last change: Updated to version 1.0.4
Updated to version 1.0.4
Updated to version 1.0.4
Date: 6 years ago
Size: 1,373 bytes
 

Contents

Class file image Download
<?php
/**
 * WP Plugin Info · Get and save plugin information from WordPress API.
 *
 * @author Josantonius <hello@josantonius.com>
 * @package eliasis-framework\wp-plugin-info
 * @copyright 2017 - 2018 (c) Josantonius - wp-plugin-info
 * @license https://opensource.org/licenses/MIT - The MIT License (MIT)
 * @link https://github.com/eliasis-framework/wp-plugin-info.git
 * @since 1.0.3
 */
session_start();

require
__DIR__ . '/../vendor/autoload.php';

use
Eliasis\Complement\Type\Plugin;
use
Josantonius\File\File;

/**
 * Load theme and plugins for testing environment.
 */
function _manually_load_environment() {
   
switch_theme( 'twentyseventeen' );
}

define( 'WP_CORE_DIR', '/tmp/wordpress/' );

define( 'WP_TESTS_DIR', '/tmp/wordpress-tests-lib' );

require_once
WP_TESTS_DIR . '/includes/functions.php';

tests_add_filter( 'muplugins_loaded', '_manually_load_environment' );

require_once
WP_TESTS_DIR . '/includes/bootstrap.php';

/*
 * Clone complement.
 */
$plugin = 'wp-plugin-info';

$path = 'sample-app/plugins';

File::deleteDirRecursively( __DIR__ . '/sample-app/plugins/' );

File::copyDirRecursively(
   
__DIR__ . '/../config/',
   
__DIR__ . "/$path/$plugin/config/"
);

File::copyDirRecursively(
   
__DIR__ . '/../src/',
   
__DIR__ . "/$path/$plugin/src/"
);

copy(
   
__DIR__ . "/../$plugin.jsond",
   
__DIR__ . "/$path/$plugin/$plugin.jsond"
);