作者:pschei
项目:psc-cm
public function __construct(Base $testCase, $entityName, $debug = FALSE)
{
$this->testCase = $testCase;
$this->hostConfig = $testCase->getHostConfig();
$this->entityMeta = $this->getEntityMeta($entityName);
$this->setDebug($debug);
$this->getLogger()->setPrefix('[acceptance]');
}
作者:pschei
项目:psc-cm
public function __construct(\Psc\Code\Test\Base $testCase, $name, Dir $root, array $paths = NULL, $mode = Project::MODE_SRC)
{
$this->name = $name;
$this->root = $root;
$this->hostConfig = $testCase->getHostConfig();
$this->projectsFactory = new ProjectsFactory($this->hostConfig);
$this->paths = $paths;
$this->mode = $mode;
parent::__construct($testCase, $fqn = 'Psc\\CMS\\Project');
}
作者:pschei
项目:psc-cm
public function setUp()
{
$this->chainClass = 'Psc\\Code\\AST\\LVariableDefinition';
parent::setUp();
// set $identifier to 17
$this->valueDef = new LVariableDefinition(new LVariable('identifier', new LType('Integer')), new LBaseValue(17));
$this->def = new LVariableDefinition(new LVariable('identifier', new LType('Integer')), NULL);
}
作者:pschei
项目:psc-cm
public function setUp()
{
$this->chainClass = 'Psc\\System\\Deploy\\WriteChangelogTask';
parent::setUp();
$this->file = $this->newFile('myChangelog.php');
$this->file->writeContents(<<<'PHP'
<?php
$data = array();
$data[] = array(
'version'=>'2.0.9-Beta',
'time'=>'13:14 25.06.2012',
'changelog'=>array(
'bugfix: Im Sound Content stand nur "content" statt dem eigentlichen Soundtext',
'geändert: Bei der Soundsuche wird bei sehr großen Results das Ergebnis auf 15 Einträge eingeschränkt'
//'bugfix: spinner bei autocomplete wird wieder angezeigt'
)
);
$data[] = array(
'version'=>'2.0.8-Beta',
'time'=>'00:02 25.06.2012',
'changelog'=>array(
'geändert: tiptoi Version 2 jetzt online',
'neu: für Externe Spiele können weitere Dateien hochgeladen werden',
'neu: Upload Manager',
'bugfixes: alle Tests laufen wieder'
)
);
?>
PHP
);
$this->writeChangelogTask = new WriteChangelogTask($this->file);
}
作者:pschei
项目:psc-cm
public function setUp()
{
$this->chainClass = 'Psc\\Net\\HTTP\\ResponseConverter';
parent::setUp();
$this->converter = new ResponseConverter();
$this->fileWithWhitespace = $this->getCommonFile('whitespace file.txt');
}
作者:pschei
项目:psc-cm
public function setUp()
{
$this->chainClass = 'Psc\\Code\\Build\\CoreBuilder';
parent::setUp();
$this->out = $this->newFile('core.phar.gz');
$this->out->delete();
}
作者:pschei
项目:psc-cm
public function setUp()
{
$this->chainClass = 'Psc\\Net\\HTTP\\RequestHandler';
$this->handler = new RequestHandler($this->svc = $this->createServiceMock(), $this->converter = $this->createResponseConverterMock());
$this->handler->setDebugLevel(15);
parent::setUp();
}
作者:pschei
项目:psc-cm
public function setUp()
{
$this->chainClass = 'Psc\\CMS\\Item\\TabButtonableValueObject';
parent::setUp();
$this->defaultObj = $this->obj = new TabButtonableValueObject();
$this->item = $this->getEntityMeta('Psc\\Doctrine\\TestEntities\\Article')->getAdapter(current($this->loadTestEntities('articles')));
}
作者:pschei
项目:psc-cm
public function setUp()
{
$this->chainClass = 'Psc\\Code\\Compile\\AddPropertyExtension';
parent::setUp();
$this->type = $this->createType('PositiveInteger');
$this->extension = new AddPropertyExtension('oid', $this->type, AddPropertyExtension::DEPENDENCY_INJECTION_NONE, 'OID');
}
作者:pschei
项目:psc-cm
public function setUp()
{
$this->chainClass = 'Psc\\JS\\Parser';
parent::setUp();
$this->parser = new Parser();
$this->dsl = new AST\DSL();
}
作者:pschei
项目:psc-cm
public function setUp()
{
$this->chainClass = 'Psc\\CMS\\EntitySearchPanel';
parent::setUp();
$this->meta = new \Psc\Doctrine\TestEntities\ArticleEntityMeta();
$this->entitySearchPanel = new EntitySearchPanel($this->meta);
}
作者:pschei
项目:psc-cm
public function setUp()
{
$this->chainClass = 'Psc\\CMS\\Item\\JooseBridge';
parent::setUp();
$this->item = $this->getEntityMeta('Psc\\Doctrine\\TestEntities\\Article')->getAdapter(current($this->loadTestEntities('articles')));
$this->jooseBridge = new JooseBridge($this->item);
}
作者:pschei
项目:psc-cm
public function setUp()
{
$this->chainClass = 'Psc\\CMS\\EntityViewPackage';
parent::setUp();
$this->ev = new EntityViewPackage($this->getTranslationContainer());
$this->entityForm = $this->getMockBuilder('Psc\\CMS\\EntityForm')->disableOriginalConstructor()->getMock();
}
作者:pschei
项目:psc-cm
public function setUp()
{
$this->chainClass = 'Psc\\CMS\\Service\\ControllerService';
$this->project = $this->getMock('Psc\\CMS\\Project', array(), array(), '', FALSE);
parent::setUp();
$this->createControllerService();
}
作者:pschei
项目:psc-cm
public function setUp()
{
$this->chainClass = 'Psc\\Form\\SetValidator';
parent::setUp();
$this->validator = $this->createFixture();
$this->failingValidator = $this->createFixture(array('birthday' => 'blubb', 'email' => 'wrong'));
}
作者:pschei
项目:psc-cm
public function setUp()
{
$this->chainClass = 'Psc\\UI\\TwitterBootstrap\\Builder';
parent::setUp();
$this->builder = new Builder();
$this->txt = (object) array('teaser' => (object) array('heading' => 'Teaser1 Heading', 'content' => 'Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermen', 'link' => array('/teaser1/more', 'learn more')));
}
作者:pschei
项目:psc-cm
public function setUp()
{
$this->chainClass = 'Psc\\Code\\Test\\Mock\\DoctrineEntityRepositoryBuilder';
parent::setUp();
$this->emm = $this->doublesManager->createEntityManagerMock();
$this->builder = new DoctrineEntityRepositoryBuilder($this, $this->emm);
}
作者:pschei
项目:psc-cm
public function setUp()
{
$this->chainClass = 'Psc\\Doctrine\\HydrationCollectionSynchronizer';
parent::setUp();
// unsere Datenbank
$this->tags = $this->loadTestEntities('tags');
}
作者:pschei
项目:psc-cm
public function setUp()
{
$this->chainClass = 'Psc\\CMS\\ComponentMapper';
parent::setUp();
$this->mapper = $this->createComponentMapper();
$this->dumper = new \Psc\Code\Event\Dumper($this->mapper);
}
作者:pschei
项目:psc-cm
public function setUp()
{
$this->chainClass = 'Psc\\CMS\\EntityPropertyMeta';
parent::setUp();
$this->entityPropertyMeta = new EntityPropertyMeta('translations', new PersistentCollectionType(new GClass('Entities\\User')), 'Übersetzungen');
$this->singleEntityPropertyMeta = new EntityPropertyMeta('person', new EntityType(new GClass('Entities\\Person')), 'zuständige Person');
}