示例#1
0
 public function setUp()
 {
     parent::setUp();
     $changeset_factory = mock('Tracker_Artifact_ChangesetFactory');
     $this->tracker = aMockTracker()->withId(1)->build();
     $this->new_artifact = partial_mock('Tracker_Artifact', array('createNewChangeset'));
     $this->new_artifact->setId($this->new_artifact_id);
     $this->layout = mock('Tracker_IDisplayTrackerLayout');
     $this->user = mock('PFUser');
     $this->xml_exporter = mock('Tracker_XML_Exporter_ArtifactXMLExporter');
     $this->xml_importer = mock('Tracker_Artifact_XMLImport');
     $this->xml_updater = mock('Tracker_XML_Updater_ChangesetXMLUpdater');
     $this->file_updater = mock('Tracker_XML_Updater_TemporaryFileXMLUpdater');
     $this->from_changeset = stub('Tracker_Artifact_Changeset')->getId()->returns($this->changeset_id);
     $this->from_artifact = partial_mock('Tracker_Artifact', array('getChangesetFactory'));
     $this->from_artifact->setId($this->artifact_id);
     $this->from_artifact->setTracker($this->tracker);
     $this->from_artifact->setChangesets(array($this->changeset_id => $this->from_changeset));
     stub($this->from_artifact)->getChangesetFactory()->returns($changeset_factory);
     stub($this->from_changeset)->getArtifact()->returns($this->from_artifact);
     $this->children_xml_exporter = mock('Tracker_XML_Exporter_ChildrenXMLExporter');
     $this->children_xml_importer = mock('Tracker_XML_Importer_ChildrenXMLImporter');
     $this->artifacts_imported_mapping = mock('Tracker_XML_Importer_ArtifactImportedMapping');
     $backend_logger = mock("BackendLogger");
     $this->logger = new Tracker_XML_Importer_CopyArtifactInformationsAggregator($backend_logger);
     $this->submitted_values = array();
     $this->artifact_factory = mock('Tracker_ArtifactFactory');
     stub($this->artifact_factory)->getArtifactByIdUserCanView($this->user, $this->artifact_id)->returns($this->from_artifact);
     $this->request = aRequest()->with('from_artifact_id', $this->artifact_id)->with('from_changeset_id', $this->changeset_id)->with('artifact', $this->submitted_values)->build();
     $this->action = new Tracker_Action_CopyArtifact($this->tracker, $this->artifact_factory, $this->xml_exporter, $this->xml_importer, $this->xml_updater, $this->file_updater, $this->children_xml_exporter, $this->children_xml_importer, $this->artifacts_imported_mapping, $this->logger);
     $this->a_mocked_artifact = mock("Tracker_Artifact");
 }
示例#2
0
 public function build()
 {
     $artifact = new Tracker_Artifact($this->id, $this->tracker_id, null, null, null);
     if ($this->tracker) {
         $artifact->setTracker($this->tracker);
     }
     if ($this->formElementFactory) {
         $artifact->setFormElementFactory($this->formElementFactory);
     }
     if ($this->changesets) {
         $artifact->setChangesets($this->changesets);
     }
     if ($this->hierarchy_factory) {
         $artifact->setHierarchyFactory($this->hierarchy_factory);
     }
     if (isset($this->ancestors)) {
         $artifact->setAllAncestors($this->ancestors);
     }
     return $artifact;
 }
 public function itReturnsTheChangesetsInReverseOrde()
 {
     $changeset1 = mock('Tracker_Artifact_Changeset');
     $changeset2 = mock('Tracker_Artifact_Changeset');
     stub($changeset1)->getRESTValue()->returns('result 1');
     stub($changeset2)->getRESTValue()->returns('result 2');
     $this->artifact->setChangesets(array($changeset1, $changeset2));
     $this->assertIdentical($this->builder->getArtifactChangesetsRepresentation($this->user, $this->artifact, Tracker_Artifact_Changeset::FIELDS_ALL, 0, 10, true)->toArray(), array('result 2', 'result 1'));
 }
示例#4
0
 public function build()
 {
     $artifact = new Tracker_Artifact($this->id, $this->tracker_id, $this->submitted_by, $this->submitted_on, null);
     if ($this->tracker) {
         $artifact->setTracker($this->tracker);
     }
     if ($this->formElementFactory) {
         $artifact->setFormElementFactory($this->formElementFactory);
     }
     if ($this->changesets) {
         $artifact->setChangesets($this->changesets);
     }
     if ($this->hierarchy_factory) {
         $artifact->setHierarchyFactory($this->hierarchy_factory);
     }
     if (isset($this->ancestors)) {
         $artifact->setAllAncestors($this->ancestors);
     }
     if ($this->title) {
         $artifact->setTitle($this->title);
     }
     if ($this->parent_without_permission_checking) {
         $artifact->setParentWithoutPermissionChecking($this->parent_without_permission_checking);
     }
     if ($this->submitted_by_user) {
         $artifact->setSubmittedByUser($this->submitted_by_user);
     }
     foreach ($this->user_can_view as $user) {
         $artifact->setUserCanView($user, true);
     }
     return $artifact;
 }
 public function itReturnsTheTotalCountOfResults()
 {
     $changeset1 = mock('Tracker_Artifact_Changeset');
     $changeset2 = mock('Tracker_Artifact_Changeset');
     stub($changeset1)->getRESTValue()->returns('result 1');
     stub($changeset2)->getRESTValue()->returns('result 2');
     $this->artifact->setChangesets(array($changeset1, $changeset2));
     $this->assertIdentical($this->builder->getArtifactChangesetsRepresentation($this->user, $this->artifact, Tracker_Artifact_Changeset::FIELDS_ALL, 1, 10)->totalCount(), 2);
 }
 private function initializeAFakeChangesetSoThatListAndWorkflowEncounterAnEmptyState(Tracker_Artifact $artifact)
 {
     $artifact->setChangesets(array(new Tracker_Artifact_Changeset_Null()));
 }