silverstripe-framework/tests/php/ORM/ComponentSetTest.php

60 lines
1.4 KiB
PHP
Raw Normal View History

<?php
2016-10-14 03:30:05 +02:00
namespace SilverStripe\ORM\Tests;
use SilverStripe\Dev\SapphireTest;
class ComponentSetTest extends SapphireTest {
2014-08-15 08:53:05 +02:00
protected static $fixture_file = 'ComponentSetTest.yml';
2014-08-15 08:53:05 +02:00
protected $extraDataObjects = array(
2016-11-13 08:35:43 +01:00
ComponentSetTest\Player::class,
2016-10-14 03:30:05 +02:00
ComponentSetTest\Team::class,
);
2014-08-15 08:53:05 +02:00
public function testSetByIDListManyMany() {
2016-11-13 08:35:43 +01:00
$team1 = $this->objFromFixture(ComponentSetTest\Team::class, 'team1');
$player1_team1 = $this->objFromFixture(ComponentSetTest\Player::class, 'player1_team1');
$player2 = $this->objFromFixture(ComponentSetTest\Player::class, 'player2');
2014-08-15 08:53:05 +02:00
$team1->Players()->setByIdList(array(
$player1_team1->ID,
$player2->ID
));
$team1->flushCache();
$this->assertContains(
$player2->ID,
$team1->Players()->column('ID'),
'Can add new entry'
);
$this->assertContains(
$player1_team1->ID,
$team1->Players()->column('ID'),
'Can retain existing entry'
);
2014-08-15 08:53:05 +02:00
$team1->Players()->setByIdList(array(
$player1_team1->ID
));
$team1->flushCache();
$this->assertNotContains(
$player2->ID,
$team1->Players()->column('ID'),
'Can remove existing entry'
);
$this->assertContains(
$player1_team1->ID,
$team1->Players()->column('ID'),
'Can retain existing entry'
);
2014-08-15 08:53:05 +02:00
$team1->Players()->setByIdList(array());
$team1->flushCache();
$this->assertEquals(0, $team1->Players()->Count(),
'Can remove all entries by passing an empty array'
);
}
}