Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Debugging info for failed SUT placement #104

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/Fixture/FixtureCreator.php
Original file line number Diff line number Diff line change
Expand Up @@ -728,6 +728,7 @@ private function verifySut(): void {
$sut_install_path = $this->sut->getInstallPathAbsolute();

if (!file_exists($sut_install_path)) {
$this->displayFailedPlaceDebuggingInfo();
throw new OrcaException('Failed to place SUT at correct path.');
}

Expand All @@ -737,6 +738,16 @@ private function verifySut(): void {
}
}

/**
* Displays debugging info about a failure to place the SUT.
*/
private function displayFailedPlaceDebuggingInfo(): void {
$this->output->section('Debugging info');
$this->output->comment('Package type is ' . $this->sut->getType());
$this->output->comment('Expected install location based on this package type is ' . $this->sut->getInstallPathRelative());
$this->output->comment('You can modify the package type via a packages alter: https://github.com/acquia/orca/blob/develop/docs/advanced-usage.md#command-line-application');
}

/**
* Displays debugging info about a failure to symlink the SUT.
*/
Expand Down