blob: e2faf6b79de5e6aaea40522a96a166f2e9a8e90b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
<?php
namespace SMW\Tests\Integration;
use SMW\Tests\MwDBaseUnitTestCase;
use SMW\Tests\Util\SemanticDataValidator;
use SMW\DIWikiPage;
use SMW\DIProperty;
use SMW\SemanticData;
use SMW\DataValueFactory;
use SMW\Subobject;
use SMW\SerializerFactory;
use SMWDIBlob as DIBlob;
use Title;
/**
* @group SMW
* @group SMWExtension
* @group semantic-mediawiki-integration
* @group mediawiki-database
* @group medium
*
* @license GNU GPL v2+
* @since 2.0
*
* @author mwjames
*/
class SemanticDataSerializationDBIntegrationTest extends MwDBaseUnitTestCase {
public function testRoundtripOfSerializedSemanticDataAfterStoreUpdate() {
$subject = DIWikiPage::newFromTitle( Title::newFromText( __METHOD__ ) );
$semanticDataBeforeUpdate = new SemanticData( $subject );
$subobject = new Subobject( $subject->getTitle() );
$subobject->setEmptySemanticDataForId( 'SomeSubobjectToSerialize' );
$subobject->getSemanticData()->addDataValue(
DataValueFactory::getInstance()->newPropertyValue( 'Foo', 'Bar' )
);
$semanticDataBeforeUpdate->addPropertyObjectValue(
$subobject->getProperty(),
$subobject->getContainer()
);
$this->getStore()->updateData( $semanticDataBeforeUpdate );
$semanticDataAfterUpdate = $this->getStore()->getSemanticData( $subject );
$this->assertNotEquals(
$semanticDataBeforeUpdate->getHash(),
$semanticDataAfterUpdate->getHash(),
'Assert that the hash is not comparable due to the added _SKEY property during the update'
);
$serializerFactory = new SerializerFactory();
$this->assertEquals(
$semanticDataAfterUpdate->getHash(),
$serializerFactory->deserialize( $serializerFactory->serialize( $semanticDataAfterUpdate ) )->getHash()
);
}
}
|