Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

336

337

338

339

340

341

342

343

344

345

# Authors: 

#   Jason Gerard DeRose <jderose@redhat.com> 

# 

# Copyright (C) 2009  Red Hat 

# see file 'COPYING' for use and warranty contextrmation 

# 

# This program is free software; you can redistribute it and/or modify 

# it under the terms of the GNU General Public License as published by 

# the Free Software Foundation, either version 3 of the License, or 

# (at your option) any later version. 

# 

# This program is distributed in the hope that it will be useful, 

# but WITHOUT ANY WARRANTY; without even the implied warranty of 

# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 

# GNU General Public License for more details. 

# 

# You should have received a copy of the GNU General Public License 

# along with this program.  If not, see <http://www.gnu.org/licenses/>. 

 

""" 

Test the `ipalib.text` module. 

""" 

 

import os 

import re 

import nose 

import locale 

from tests.util import raises, assert_equal 

from ipalib.request import context 

from ipalib import request 

from ipalib import text 

from ipapython.ipautil import file_exists 

 

singular = '%(count)d goose makes a %(dish)s' 

plural = '%(count)d geese make a %(dish)s' 

 

 

# Unicode right pointing arrow 

prefix = u'\u2192'               # utf-8 == '\xe2\x86\x92' 

# Unicode left pointing arrow 

suffix = u'\u2190'               # utf-8 == '\xe2\x86\x90' 

 

def get_msgid(po_file): 

    'Get the first non-empty msgid from the po file' 

 

    msgid_re = re.compile(r'^\s*msgid\s+"(.+)"\s*$') 

    f = open(po_file) 

    for line in f.readlines(): 

        match = msgid_re.search(line) 

        if match: 

            msgid = match.group(1) 

            f.close() 

            return msgid 

    f.close() 

    raise ValueError('No msgid found in %s' % po_file) 

 

def test_gettext(): 

    ''' 

    Test gettext translation 

 

    We test our translations by taking the original untranslated 

    string (e.g. msgid) and prepend a prefix character and then append 

    a suffix character. The test consists of asserting that the first 

    character in the translated string is the prefix, the last 

    character in the translated string is the suffix and the 

    everything between the first and last character exactly matches 

    the original msgid. 

 

    We use unicode characters not in the ascii character set for the 

    prefix and suffix to enhance the test. To make reading the 

    translated string easier the prefix is the unicode right pointing 

    arrow and the suffix left pointing arrow, thus the translated 

    string looks like the original string enclosed in arrows. In ASCII 

    art the string "foo" would render as: "-->foo<--" 

    ''' 

 

    localedir='install/po/test_locale' 

    test_file='install/po/test.po' 

 

    lang = os.environ['LANG'] 

    os.environ['LANG'] = 'xh_ZA' 

 

    # Tell gettext that our domain is 'ipa', that locale_dir is 

    # 'test_locale' (i.e. where to look for the message catalog) 

    _ = text.GettextFactory('ipa', localedir) 

 

    # We need a translatable string to test with, read one from the 

    # test po file 

    if not file_exists(test_file): 

        raise nose.SkipTest( 

           'Test language not available, run "make test_lang" in install/po' 

        ) 

    msgid = get_msgid(test_file) 

 

    # Get the localized instance of the msgid, it should be a Gettext 

    # instance. 

    localized = _(msgid) 

    assert(isinstance(localized, text.Gettext)) 

 

    # Get the translated string from the Gettext instance by invoking 

    # unicode on it. 

    translated = unicode(localized) 

 

    # Perform the verifications on the translated string. 

 

    # Verify the first character is the test prefix 

    assert(translated[0] == prefix) 

 

    # Verify the last character is the test suffix 

    assert(translated[-1] == suffix) 

 

    # Verify everything between the first and last character is the 

    # original untranslated string 

    assert(translated[1:-1] == msgid) 

 

    # Reset the language and assure we don't get the test values 

    context.__dict__.clear() 

    os.environ['LANG'] = lang 

 

    translated = unicode(localized) 

 

    assert(translated[0] != prefix) 

    assert(translated[-1] != suffix) 

 

def test_create_translation(): 

    f = text.create_translation 

    key = ('foo', None) 

    t = f(key) 

    assert context.__dict__[key] is t 

 

 

class test_LazyText(object): 

 

    klass = text.LazyText 

 

    def test_init(self): 

        inst = self.klass('foo', 'bar') 

        assert inst.domain == 'foo' 

        assert inst.localedir == 'bar' 

        assert inst.key == ('foo', 'bar') 

 

 

class test_FixMe(object): 

    klass = text.FixMe 

 

    def test_init(self): 

        inst = self.klass('user.label') 

        assert inst.msg == 'user.label' 

        assert inst.domain is None 

        assert inst.localedir is None 

 

    def test_repr(self): 

        inst = self.klass('user.label') 

        assert repr(inst) == "FixMe('user.label')" 

 

    def test_unicode(self): 

        inst = self.klass('user.label') 

        assert unicode(inst) == u'<user.label>' 

        assert type(unicode(inst)) is unicode 

 

 

class test_Gettext(object): 

 

    klass = text.Gettext 

 

    def test_init(self): 

        inst = self.klass('what up?', 'foo', 'bar') 

        assert inst.domain == 'foo' 

        assert inst.localedir == 'bar' 

        assert inst.msg is 'what up?' 

        assert inst.args == ('what up?', 'foo', 'bar') 

 

    def test_repr(self): 

        inst = self.klass('foo', 'bar', 'baz') 

        assert repr(inst) == "Gettext('foo', domain='bar', localedir='baz')" 

 

    def test_unicode(self): 

        inst = self.klass('what up?', 'foo', 'bar') 

        assert unicode(inst) == u'what up?' 

 

    def test_mod(self): 

        inst = self.klass('hello %(adj)s nurse', 'foo', 'bar') 

        assert inst % dict(adj='naughty', stuff='junk') == 'hello naughty nurse' 

 

    def test_eq(self): 

        inst1 = self.klass('what up?', 'foo', 'bar') 

        inst2 = self.klass('what up?', 'foo', 'bar') 

        inst3 = self.klass('Hello world', 'foo', 'bar') 

        inst4 = self.klass('what up?', 'foo', 'baz') 

 

        assert (inst1 == inst1) is True 

        assert (inst1 == inst2) is True 

        assert (inst1 == inst3) is False 

        assert (inst1 == inst4) is False 

 

        # Test with args flipped 

        assert (inst2 == inst1) is True 

        assert (inst3 == inst1) is False 

        assert (inst4 == inst1) is False 

 

    def test_ne(self): 

        inst1 = self.klass('what up?', 'foo', 'bar') 

        inst2 = self.klass('what up?', 'foo', 'bar') 

        inst3 = self.klass('Hello world', 'foo', 'bar') 

        inst4 = self.klass('what up?', 'foo', 'baz') 

 

        assert (inst1 != inst2) is False 

        assert (inst1 != inst2) is False 

        assert (inst1 != inst3) is True 

        assert (inst1 != inst4) is True 

 

        # Test with args flipped 

        assert (inst2 != inst1) is False 

        assert (inst3 != inst1) is True 

        assert (inst4 != inst1) is True 

 

 

class test_NGettext(object): 

 

    klass = text.NGettext 

 

    def test_init(self): 

        inst = self.klass(singular, plural, 'foo', 'bar') 

        assert inst.singular is singular 

        assert inst.plural is plural 

        assert inst.domain == 'foo' 

        assert inst.localedir == 'bar' 

        assert inst.args == (singular, plural, 'foo', 'bar') 

 

    def test_repr(self): 

        inst = self.klass('sig', 'plu', 'foo', 'bar') 

        assert repr(inst) == \ 

            "NGettext('sig', 'plu', domain='foo', localedir='bar')" 

 

    def test_call(self): 

        inst = self.klass(singular, plural, 'foo', 'bar') 

        assert inst(0) == plural 

        assert inst(1) == singular 

        assert inst(2) == plural 

        assert inst(3) == plural 

 

    def test_mod(self): 

        inst = self.klass(singular, plural, 'foo', 'bar') 

        assert inst % dict(count=0, dish='frown') == '0 geese make a frown' 

        assert inst % dict(count=1, dish='stew') == '1 goose makes a stew' 

        assert inst % dict(count=2, dish='pie') == '2 geese make a pie' 

 

    def test_eq(self): 

        inst1 = self.klass(singular, plural, 'foo', 'bar') 

        inst2 = self.klass(singular, plural, 'foo', 'bar') 

        inst3 = self.klass(singular, '%(count)d thingies', 'foo', 'bar') 

        inst4 = self.klass(singular, plural, 'foo', 'baz') 

 

        assert (inst1 == inst1) is True 

        assert (inst1 == inst2) is True 

        assert (inst1 == inst3) is False 

        assert (inst1 == inst4) is False 

 

        # Test with args flipped 

        assert (inst2 == inst1) is True 

        assert (inst3 == inst1) is False 

        assert (inst4 == inst1) is False 

 

    def test_ne(self): 

        inst1 = self.klass(singular, plural, 'foo', 'bar') 

        inst2 = self.klass(singular, plural, 'foo', 'bar') 

        inst3 = self.klass(singular, '%(count)d thingies', 'foo', 'bar') 

        inst4 = self.klass(singular, plural, 'foo', 'baz') 

 

        assert (inst1 != inst2) is False 

        assert (inst1 != inst2) is False 

        assert (inst1 != inst3) is True 

        assert (inst1 != inst4) is True 

 

        # Test with args flipped 

        assert (inst2 != inst1) is False 

        assert (inst3 != inst1) is True 

        assert (inst4 != inst1) is True 

 

 

class test_GettextFactory(object): 

 

    klass = text.GettextFactory 

 

    def test_init(self): 

        # Test with defaults: 

        inst = self.klass() 

        assert inst.domain == 'ipa' 

        assert inst.localedir is None 

 

        # Test with overrides: 

        inst = self.klass('foo', 'bar') 

        assert inst.domain == 'foo' 

        assert inst.localedir == 'bar' 

 

    def test_repr(self): 

        # Test with defaults: 

        inst = self.klass() 

        assert repr(inst) == "GettextFactory(domain='ipa', localedir=None)" 

 

        # Test with overrides: 

        inst = self.klass('foo', 'bar') 

        assert repr(inst) == "GettextFactory(domain='foo', localedir='bar')" 

 

    def test_call(self): 

        inst = self.klass('foo', 'bar') 

        g = inst('what up?') 

        assert type(g) is text.Gettext 

        assert g.msg is 'what up?' 

        assert g.domain == 'foo' 

        assert g.localedir == 'bar' 

 

 

class test_NGettextFactory(object): 

 

    klass = text.NGettextFactory 

 

    def test_init(self): 

        # Test with defaults: 

        inst = self.klass() 

        assert inst.domain == 'ipa' 

        assert inst.localedir is None 

 

        # Test with overrides: 

        inst = self.klass('foo', 'bar') 

        assert inst.domain == 'foo' 

        assert inst.localedir == 'bar' 

 

    def test_repr(self): 

        # Test with defaults: 

        inst = self.klass() 

        assert repr(inst) == "NGettextFactory(domain='ipa', localedir=None)" 

 

        # Test with overrides: 

        inst = self.klass('foo', 'bar') 

        assert repr(inst) == "NGettextFactory(domain='foo', localedir='bar')" 

 

    def test_call(self): 

        inst = self.klass('foo', 'bar') 

        ng = inst(singular, plural, 7) 

        assert type(ng) is text.NGettext 

        assert ng.singular is singular 

        assert ng.plural is plural 

        assert ng.domain == 'foo' 

        assert ng.localedir == 'bar'