summaryrefslogtreecommitdiff
path: root/t/inc/Revision.t
blob: a6f2849b76fa4e13e3d4afa9443ae07f4ed09cc6 (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
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env php
<?php

define( 'MEDIAWIKI', true );
require 't/Test.php';

plan( 19 );

require_ok( 'includes/Defines.php' );
require_ok( 'includes/ProfilerStub.php' );
require_ok( 'includes/GlobalFunctions.php' );
require_ok( 'languages/Language.php' );
require_ok( 'includes/Revision.php' );

$wgContLang = Language::factory( 'en' );
$wgLegacyEncoding = false;
$wgCompressRevisions = false;
$wgInputEncoding = 'utf-8';
$wgOutputEncoding = 'utf-8';

$row = new stdClass;
$row->old_flags = '';
$row->old_text = 'This is a bunch of revision text.';
cmp_ok( Revision::getRevisionText( $row ), '==',
	'This is a bunch of revision text.', 'Get revision text' );

$row = new stdClass;
$row->old_flags = 'gzip';
$row->old_text = gzdeflate( 'This is a bunch of revision text.' );
cmp_ok( Revision::getRevisionText( $row ), '==',
	'This is a bunch of revision text.', 'Get revision text with gzip compression' );

$wgLegacyEncoding = 'iso-8859-1';

$row = new stdClass;
$row->old_flags = 'utf-8';
$row->old_text = "Wiki est l'\xc3\xa9cole superieur !";
cmp_ok( Revision::getRevisionText( $row ), '==',
	"Wiki est l'\xc3\xa9cole superieur !", 'Get revision text utf-8 native' );

$row = new stdClass;
$row->old_flags = '';
$row->old_text = "Wiki est l'\xe9cole superieur !";
cmp_ok( Revision::getRevisionText( $row ), '==',
	"Wiki est l'\xc3\xa9cole superieur !", 'Get revision text utf-8 legacy' );

$row = new stdClass;
$row->old_flags = 'gzip,utf-8';
$row->old_text = gzdeflate( "Wiki est l'\xc3\xa9cole superieur !" );
cmp_ok( Revision::getRevisionText( $row ), '==',
	"Wiki est l'\xc3\xa9cole superieur !", 'Get revision text utf-8 native and gzip' );

$row = new stdClass;
$row->old_flags = 'gzip';
$row->old_text = gzdeflate( "Wiki est l'\xe9cole superieur !" );
cmp_ok( Revision::getRevisionText( $row ), '==',
	"Wiki est l'\xc3\xa9cole superieur !", 'Get revision text utf-8 native and gzip' );

$row = new stdClass;
$row->old_text = "Wiki est l'\xc3\xa9cole superieur !";
$row->old_flags = Revision::compressRevisionText( $row->old_text );
like( $row->old_flags, '/utf-8/', "Flags should contain 'utf-8'" );
unlike( $row->old_flags, '/gzip/', "Flags should not contain 'gzip'" );
cmp_ok( $row->old_text, '==',
	"Wiki est l'\xc3\xa9cole superieur !", "Direct check" );
cmp_ok( Revision::getRevisionText( $row ), '==',
	"Wiki est l'\xc3\xa9cole superieur !", "getRevisionText" );
	
$wgCompressRevisions = true;

$row = new stdClass;
$row->old_text = "Wiki est l'\xc3\xa9cole superieur !";
$row->old_flags = Revision::compressRevisionText( $row->old_text );
like( $row->old_flags, '/utf-8/', "Flags should contain 'utf-8'" );
like( $row->old_flags, '/gzip/', "Flags should contain 'gzip'" );
cmp_ok( gzinflate( $row->old_text ), '==',
	"Wiki est l'\xc3\xa9cole superieur !", "Direct check" );
cmp_ok( Revision::getRevisionText( $row ), '==',
	"Wiki est l'\xc3\xa9cole superieur !", "getRevisionText" );