| 1 |  |  | <?php | 
            
                                                                                                            
                            
            
                                    
            
            
                | 2 |  |  | namespace Robo\Traits; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 3 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 4 |  |  | use Robo\Robo; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 5 |  |  | use Robo\TaskAccessor; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 6 |  |  | use Robo\Collection\CollectionBuilder; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 7 |  |  | use Symfony\Component\Console\Output\BufferedOutput; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 8 |  |  | use Symfony\Component\Console\Output\OutputInterface; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 9 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 10 |  |  | trait TestTasksTrait | 
            
                                                                                                            
                            
            
                                    
            
            
                | 11 |  |  | { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 12 |  |  |     use TaskAccessor; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 13 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 14 |  |  |     protected $testPrinter; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 15 |  |  |     protected $capturedOutput; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 16 |  |  |     protected $logger; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 17 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 18 |  |  |     public function initTestTasksTrait($commandClass = null, $container = null, $input = null) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 19 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 20 |  |  |         if (!$container) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 21 |  |  |             $container = Robo::createDefaultContainer(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 22 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 23 |  |  |         $this->capturedOutput = ''; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 24 |  |  |         $this->testPrinter = new BufferedOutput(OutputInterface::VERBOSITY_DEBUG); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 25 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 26 |  |  |         $app = Robo::createDefaultApplication(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 27 |  |  |         $config = new \Robo\Config(); | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 28 |  |  |         \Robo\Robo::configureContainer($container, $app, $config, $input, $this->testPrinter); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 29 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 30 |  |  |         // Set the application dispatcher | 
            
                                                                                                            
                            
            
                                    
            
            
                | 31 |  |  |         $app->setDispatcher($container->get('eventDispatcher')); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 32 |  |  |         $this->logger = $container->get('logger'); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 33 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 34 |  |  |         // Make a command class if one was not provided | 
            
                                                                                                            
                            
            
                                    
            
            
                | 35 |  |  |         if (!$commandClass) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 36 |  |  |             $commandClass = new \Robo\RoboFileFixture(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 37 |  |  |             $commandClass->setLogger($this->logger); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 38 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 39 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 40 |  |  |         // Configure BuilderAwareTrait | 
            
                                                                                                            
                            
            
                                    
            
            
                | 41 |  |  |         $builder = CollectionBuilder::create($container, $commandClass); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 42 |  |  |         $commandClass->setBuilder($builder); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 43 |  |  |         $this->setBuilder($builder); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 44 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 45 |  |  |         return $container; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 46 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 47 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 48 |  |  |     public function capturedOutputStream() | 
            
                                                                                                            
                            
            
                                    
            
            
                | 49 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 50 |  |  |         if (!$this->testPrinter) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 51 |  |  |             $this->initTestTasksTrait(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 52 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 53 |  |  |         return $this->testPrinter; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 54 |  |  |     } | 
            
                                                                                                            
                                                                
            
                                    
            
            
                | 55 |  |  |  | 
            
                                                                        
                            
            
                                    
            
            
                | 56 |  |  |     public function logger() | 
            
                                                                        
                            
            
                                    
            
            
                | 57 |  |  |     { | 
            
                                                                        
                            
            
                                    
            
            
                | 58 |  |  |         return $this->logger; | 
            
                                                                        
                            
            
                                    
            
            
                | 59 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 60 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 61 |  |  |     protected function accumulate() | 
            
                                                                                                            
                            
            
                                    
            
            
                | 62 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 63 |  |  |         $this->capturedOutput .= $this->capturedOutputStream()->fetch(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 64 |  |  |         return $this->capturedOutput; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 65 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 66 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 67 |  |  |     public function assertOutputContains($value) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 68 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 69 |  |  |         $output = $this->accumulate(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 70 |  |  |         $output = $this->simplify($output); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 71 |  |  |         $this->assertContains($value, $output); | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 72 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 73 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 74 |  |  |     public function assertOutputNotContains($value) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 75 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 76 |  |  |         $output = $this->accumulate(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 77 |  |  |         $output = $this->simplify($output); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 78 |  |  |         $this->assertNotContains($value, $output); | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 79 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 80 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 81 |  |  |     public function assertOutputEquals($value) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 82 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 83 |  |  |         $output = $this->accumulate(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 84 |  |  |         $output = $this->simplify($output); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 85 |  |  |         $this->assertEquals($value, $output); | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 86 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 87 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 88 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 89 |  |  |      * Make our output comparisons more platform-agnostic by converting | 
            
                                                                                                            
                            
            
                                    
            
            
                | 90 |  |  |      * CRLF (Windows) or raw CR (confused output) to a LF (unix/Mac). | 
            
                                                                                                            
                            
            
                                    
            
            
                | 91 |  |  |      */ | 
            
                                                                                                            
                            
            
                                                                    
                                                                                                        
            
            
                | 92 |  | View Code Duplication |     protected function simplify($output) | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 93 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 94 |  |  |         $output = str_replace("\r\n", "\n", $output); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 95 |  |  |         $output = str_replace("\r", "\n", $output); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 96 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 97 |  |  |         return $output; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 98 |  |  |     } | 
            
                                                                                                            
                                                                
            
                                    
            
            
                | 99 |  |  | } | 
            
                                                        
            
                                    
            
            
                | 100 |  |  |  | 
            
                        
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.