2013-01-02 57 views
4

我在使用Travis-CI时遇到了一些麻烦,当它在我的本地计算机上正常工作时。我正在使用相同的PHP版本和PHPUnit版本。PHPUnit在Travis-CI上失败,但在本地通过

我的代码库是https://github.com/lncd/OAuth2
特拉维斯-CI输出为https://travis-ci.org/lncd/OAuth2

从库的根执行phpunit -c build/phpunit.xml本地工作很好,测试按预期执行。

的日志Travis是:

$ cd ~/builds 
$ git clone --branch=develop --depth=100 --quiet git://github.com/lncd/OAuth2.git lncd/OAuth2 
$ cd lncd/OAuth2 
$ git checkout -qf 1c3b319aa6c8f5521d5123f0e6affca94ee35010 
$ phpenv global 5.3 
$ php --version 
PHP 5.3.19 (cli) (built: Dec 20 2012 09:57:38) 
Copyright (c) 1997-2012 The PHP Group 
Zend Engine v2.3.0, Copyright (c) 1998-2012 Zend Technologies 
    with Xdebug v2.2.1, Copyright (c) 2002-2012, by Derick Rethans 
$ phpunit -c build/phpunit.xml 
PHP Warning: require_once(src/OAuth2/Authentication/Server.php): failed to open stream: No such file or directory in /home/travis/builds/lncd/OAuth2/tests/authentication/server_test.php on line 3 
PHP Stack trace: 
PHP 1. {main}() /home/travis/.phpenv/versions/5.3.19/bin/phpunit:0 
PHP 2. PHPUnit_TextUI_Command::main() /home/travis/.phpenv/versions/5.3.19/bin/phpunit:46 
PHP 3. PHPUnit_TextUI_Command->run() /home/travis/.phpenv/versions/5.3.19/share/pyrus/.pear/php/PHPUnit/TextUI/Command.php:129 
PHP 4. PHPUnit_TextUI_Command->handleArguments() /home/travis/.phpenv/versions/5.3.19/share/pyrus/.pear/php/PHPUnit/TextUI/Command.php:138 
PHP 5. PHPUnit_Util_Configuration->getTestSuiteConfiguration() /home/travis/.phpenv/versions/5.3.19/share/pyrus/.pear/php/PHPUnit/TextUI/Command.php:657 
PHP 6. PHPUnit_Util_Configuration->getTestSuite() /home/travis/.phpenv/versions/5.3.19/share/pyrus/.pear/php/PHPUnit/Util/Configuration.php:784 
PHP 7. PHPUnit_Framework_TestSuite->addTestFiles() /home/travis/.phpenv/versions/5.3.19/share/pyrus/.pear/php/PHPUnit/Util/Configuration.php:860 
PHP 8. PHPUnit_Framework_TestSuite->addTestFile() /home/travis/.phpenv/versions/5.3.19/share/pyrus/.pear/php/PHPUnit/Framework/TestSuite.php:416 
PHP 9. PHPUnit_Util_Fileloader::checkAndLoad() /home/travis/.phpenv/versions/5.3.19/share/pyrus/.pear/php/PHPUnit/Framework/TestSuite.php:355 
PHP 10. PHPUnit_Util_Fileloader::load() /home/travis/.phpenv/versions/5.3.19/share/pyrus/.pear/php/PHPUnit/Util/Fileloader.php:76 
PHP 11. include_once() /home/travis/.phpenv/versions/5.3.19/share/pyrus/.pear/php/PHPUnit/Util/Fileloader.php:92 

我已经改变require_once加载require_once '../../src/OAuth2/Authentication/Server.php';(即两个目录的执行文件下)玩耍了,但这并不对特拉维斯或我的地方工作建立。

我在做什么错?或者它是Travis的错误?

谢谢


编辑:

为了澄清这是目录结构:

build 
    /phpunit.xml 
src 
    /OAuth2 
     /Authentication 
      /Database.php 
      /Server.php 
     /Resource 
      /Database.php 
      /Server.php 
tests 
    /authentication 
     /database_mock.php 
     /server_test.php 
    /resource 
     /database_mock.php 
     /server_test.php 

这两个文件在/测试称为server_test.php下的目录要加载相应的来自/ src下目录的Server.phpDatabase.php文件

+0

'的var_dump(GETCWD(),get_include_path());'' – zerkms

+0

getcwd':/家庭/特拉维斯/建立/ lncd/OAuth2用户 '包括path':/家庭/特拉维斯/ .phpenv /版本/ 5.3.19/pear:/home/travis/.phpenv/versions/5.3.19/share/pyrus/.pear/php '__FILE__':/ home/travis/builds/lncd/OAuth2/tests/authentication/server_test .php '__DIR__':/ home/travis/builds/lncd/OAuth2/tests/authentication – alexbilbie

+0

看起来您并未安装所有要求。 –

回答

4

正如我从您的存储库中看到的,您需要通过当前目录中相关链接使用的文件。因此,PHPUnit会尝试在放置测试的相同目录中查找所需的文件,并且找不到任何文件。您需要将require_once的使用更改为../../src/OAuth2/Resource/Server.php或为PHPUnit添加bootstrap.php文件。

下面我复制粘贴,我使用PHPUnit和作曲家用我的bootstrap.php文件:http://www.phpunit.de/manual/current/en/textui.html:约bootstrap.php中的文件,你可以在这里找到

<?php 
if ([email protected] __DIR__ . '/../vendor/autoload.php') { 
    die('You must set up the project dependencies, run the following commands: 
     wget http://getcomposer.org/composer.phar 
     php composer.phar install'); 
} 

更多信息。

+0

我已经尝试过 - https://travis-ci.org/lncd/OAuth2/jobs/3922238 - 仍然损坏在Travis上,现在在本地破解 – alexbilbie

+0

尝试添加bootstrap.php文件。在测试中使用'require'不是一个好方法。 –

+0

谢谢,我误解了你的建议。现在正在工作。 – alexbilbie

相关问题