Skip to content
Snippets Groups Projects
Commit 67b5c47c authored by Ghislain Loas's avatar Ghislain Loas
Browse files

fix rt comments missing test on patch 276

parent 5aa8d37a
Branches
Tags
3 merge requests!1267Master,!1247Dev#30936 dev30936 cdscript import,!1206Dev#30936 dev30936 cdscript import
- ticket #30936 : Dole : Intégration des ressources numériques de Jumel : 1) import des notices
\ No newline at end of file
- ticket #30936 : Réalisation du développement permettant l'intégration des ressources numériques de CdScript avec génération du lien pour accéder à la ressource.
\ No newline at end of file
<?php
error_reporting(E_ERROR | E_PARSE);
define("PATCH_LEVEL","277");
define("PATCH_LEVEL","276");
define("APPLI","cosmogramme");
define("COSMOPATH", "/var/www/html/vhosts/opac2/www/htdocs");
......
<?php
$adapter = Zend_Db_Table::getDefaultAdapter();
try {
$adapter->query("update variables set liste='0:Pas informatisé\r\n1:Pergame\r\n2:Paprika\r\n3:Orphée\r\n4:Opsys\r\n5:Microbib\r\n6:Atalante\r\n7:Multilis\r\n8:Bibal\r\n9:Milord\r\n10:Elissa\r\n11:v-smart\r\n12:Koha\r\n13:Nanook\r\n14:Carthame\r\n15:Dynix\r\n16:Cd-Script\r\n' where clef='sigb';");
} catch (Exception $e) {}
try {
$adapter->query("update variables set liste='0:aucun\r\n1:pergame\r\n2:web-service Opsys\r\n3:serveur Z39.50\r\n4:web-service V-Smart\r\n5:web-service Koha\r\n6:web-service Carthame\r\n7:web-service AFI-Nanook\r\n8:web-service Orphée\r\n9:web-service Microbib\r\n10:web-service BiblixNet\r\n11:web-service Dynix-Symphony\r\n12:Cd-Script\r\n' where clef='comm_sigb';");
} catch (Exception $e) {}
?>
<?php
$adapter = Zend_Db_Table::getDefaultAdapter();
try {
$adapter->query("update variables set liste=
'
0:Pas informatisé\r\n
1:Pergame\r\n
2:Paprika\r\n
3:Orphée\r\n
4:Opsys\r\n
5:Microbib\r\n
6:Atalante\r\n
7:Multilis\r\n
8:Bibal\r\n
9:Milord\r\n
10:Elissa\r\n
11:v-smart\r\n
12:Koha\r\n
13:Nanook\r\n
14:Carthame\r\n
15:Dynix\r\n
16:Cd-Script\r\n
'
where clef='sigb';");
} catch (Exception $e) {}
try {
$adapter->query("update variables set liste=
'
0:aucun\r\n
1:pergame\r\n
2:web-service Opsys\r\n
3:serveur Z39.50\r\n
4:web-service V-Smart\r\n
5:web-service Koha\r\n
6:web-service Carthame\r\n
7:web-service AFI-Nanook\r\n
8:web-service Orphée\r\n
9:web-service Microbib\r\n
10:web-service BiblixNet\r\n
11:web-service Dynix-Symphony\r\n
12:Cd-Script\r\n
'
where clef='comm_sigb';");
} catch (Exception $e) {}
?>
......@@ -36,21 +36,7 @@ class CdScriptIntegrationLeKiosqueTest extends CdScriptIntegrationTestCase {
$this->fixture('Class_CosmoVar',
['id' => 'types_docs',
'liste' => '
0:Livre et cartes\r\n
1:Livres\r\n
2:Revues\r\n
3:Disques\r\n
4:DVD\r\n
5:Cédéroms\r\n
6:Partitions\r\n
7:Livres lus\r\n
8:articles\r\n
9:fils rss\r\n
10:Le Kiosque\r\n
11:ToutApprendre\r\n
12:ArteVOD\r\n
']);
'liste' => '0:Livre et cartes\r\n1:Livres\r\n2:Revues\r\n3:Disques\r\n4:DVD\r\n5:Cédéroms\r\n6:Partitions\r\n7:Livres lus\r\n8:articles\r\n9:fils rss\r\n10:Le Kiosque\r\n11:ToutApprendre\r\n12:ArteVOD\r\n']);
$this->loadRecordsFromFile('unimarc_le_kiosque');
$this->_deco_magazine = Class_Notice::find(1);
......@@ -65,6 +51,6 @@ class CdScriptIntegrationLeKiosqueTest extends CdScriptIntegrationTestCase {
/** @test */
public function resumeShouldContainsDecoMagazineAndRevue() {
$this->assertEquals("Dernier numéro paru : Déco Magazine, 62, 23/09/2015.<br />Revue trimestrielle qui allie l'architecture à la décoration et se veut une publication de référence, d'information et d'orientation.<br />", $this->_deco_magazine->getResume());
$this->assertEquals("Revue trimestrielle qui allie l'architecture à la décoration et se veut une publication de référence, d'information et d'orientation.", $this->_deco_magazine->getResume());
}
}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment