Beispiel #1
0
 public function testCleanupReportsRemovesFiles()
 {
     $fixtureDir = $this->_getBaseFixtureDir() . '/config_dist';
     $bootstrap = new \Magento\TestFramework\Performance\Bootstrap($fixtureDir, $fixtureDir);
     $reportDir = $fixtureDir . '/tmp/subdirectory/report';
     mkdir($reportDir, 0777, true);
     $reportFile = $reportDir . '/a.jtl';
     touch($reportFile);
     $this->assertFileExists($reportFile);
     $bootstrap->cleanupReports();
     $this->assertFileNotExists($reportFile);
 }
 public function testCreateApplicationTestSuite()
 {
     $shell = $this->getMock('Magento\\Framework\\Shell', [], [], '', false);
     $bootstrap = new \Magento\TestFramework\Performance\Bootstrap($this->appBootstrap, $this->_getBaseFixtureDir() . '/config_dist');
     $application = $bootstrap->createApplication($shell);
     $this->assertInstanceOf('Magento\\TestFramework\\Application', $application);
     $handler = $this->getMockForAbstractClass('Magento\\TestFramework\\Performance\\Scenario\\HandlerInterface');
     $testSuite = $bootstrap->createTestSuite($application, $handler);
     $this->assertInstanceOf('Magento\\TestFramework\\Performance\\Testsuite', $testSuite);
 }
/**
 * Performance framework bootstrap script
 *
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/osl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @copyright   Copyright (c) 2014 X.commerce, Inc. (http://www.magentocommerce.com)
 * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
 */
$testsBaseDir = dirname(__DIR__);
require __DIR__ . '/../../../../app/bootstrap.php';
$appBootstrap = \Magento\Framework\App\Bootstrap::create(BP, $_SERVER);
(new \Magento\Framework\Autoload\IncludePath())->addIncludePath($testsBaseDir . '/framework');
$bootstrap = new \Magento\TestFramework\Performance\Bootstrap($appBootstrap, $testsBaseDir);
$bootstrap->cleanupReports();
return $bootstrap;
Beispiel #4
0
/**
 * Performance framework bootstrap script
 *
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/osl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @copyright   Copyright (c) 2014 X.commerce, Inc. (http://www.magentocommerce.com)
 * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
 */
$testsBaseDir = realpath(__DIR__ . '/..');
$magentoBaseDir = realpath($testsBaseDir . '/../../../');
require_once "{$magentoBaseDir}/app/bootstrap.php";
(new \Magento\Framework\Autoload\IncludePath())->addIncludePath("{$testsBaseDir}/framework");
$bootstrap = new \Magento\TestFramework\Performance\Bootstrap($testsBaseDir, $magentoBaseDir);
$bootstrap->cleanupReports();
return $bootstrap->getConfig();