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 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581
|
# encoding: utf-8
# frozen_string_literal: true
require 'spec_helper'
describe "Utilities Module" do
include Mail::Utilities
describe "token safe" do
describe "checking" do
it "should return true if a string is token safe" do
expect(token_safe?('.abc')).to be_truthy
end
it "should return false if a string is token safe" do
expect(token_safe?('?=abc')).to be_falsey
end
it "should work with mb_chars" do
expect(token_safe?('.abc'.mb_chars)).to be_truthy
expect(token_safe?('?=abc'.mb_chars)).to be_falsey
end
end
describe "quoting" do
it "should return true if a string is token safe" do
expect(quote_token('.abc')).to eq '.abc'
end
it "should return false if a string is token safe" do
expect(quote_token('?=abc')).to eq '"?=abc"'
end
it "should work with mb_chars" do
expect(quote_token('.abc'.mb_chars)).to eq '.abc'
expect(quote_token('?=abc'.mb_chars)).to eq '"?=abc"'
end
end
end
describe "atom safe" do
describe "checking" do
it "should return true if a string is token safe" do
expect(atom_safe?('?=abc')).to be_truthy
end
it "should return false if a string is token safe" do
expect(atom_safe?('.abc')).to be_falsey
end
it "should work with mb_chars" do
expect(atom_safe?('?=abc'.mb_chars)).to be_truthy
expect(atom_safe?('.abc'.mb_chars)).to be_falsey
end
end
describe "quoting" do
it "should return true if a string is token safe" do
expect(quote_atom('?=abc')).to eq '?=abc'
end
it "should return false if a string is token safe" do
expect(quote_atom('.abc')).to eq '".abc"'
end
it "should work with mb_chars" do
expect(quote_atom('?=abc'.mb_chars)).to eq '?=abc'
expect(quote_atom('.abc'.mb_chars)).to eq '".abc"'
end
it "should work with mb_chars" do
expect(quote_atom('?=abc'.mb_chars)).to eq '?=abc'
expect(quote_atom('.abc'.mb_chars)).to eq '".abc"'
end
it "should quote white space" do
expect(quote_atom('ab abc'.mb_chars)).to eq '"ab abc"'
expect(quote_atom("a\sb\ta\r\nbc".mb_chars)).to eq %{"a\sb\ta\r\nbc"}
end
end
end
describe "quoting phrases" do
it "doesn't mutate original string" do
input_str = "blargh".freeze
expect { quote_phrase(input_str) }.not_to raise_error
end
if RUBY_VERSION >= '1.9'
describe "given a non-unsafe string" do
it "should not change the encoding" do
input_str = "blargh"
input_str_encoding = input_str.encoding
result = quote_phrase(input_str)
expect(result.encoding).to eq input_str_encoding
end
end
describe "given an unsafe string" do
it "should not change the encoding" do
input_str = "Bjørn"
input_str_encoding = input_str.encoding
result = quote_phrase(input_str)
expect(result.encoding).to eq input_str_encoding
end
end
end
end
describe "escaping parenthesies" do
it "should escape parens" do
test = 'This is not (escaped)'
result = 'This is not \(escaped\)'
expect(escape_paren(test)).to eq result
end
it "should not double escape parens" do
test = 'This is not \(escaped\)'
result = 'This is not \(escaped\)'
expect(escape_paren(test)).to eq result
end
it "should escape all parens" do
test = 'This is not \()escaped(\)'
result = 'This is not \(\)escaped\(\)'
expect(escape_paren(test)).to eq result
end
end
describe "unescaping parenthesis" do
it "should work" do
test = '(This is a string)'
result = 'This is a string'
expect(unparen(test)).to eq result
end
it "should work without parens" do
test = 'This is a string'
result = 'This is a string'
expect(unparen(test)).to eq result
end
it "should work using ActiveSupport mb_chars" do
test = '(This is a string)'.mb_chars
result = 'This is a string'
expect(unparen(test)).to eq result
end
it "should work without parens using ActiveSupport mb_chars" do
test = 'This is a string'.mb_chars
result = 'This is a string'
expect(unparen(test)).to eq result
end
end
describe "unescaping brackets" do
it "should work" do
test = '<This is a string>'
result = 'This is a string'
expect(unbracket(test)).to eq result
end
it "should work without brackets" do
test = 'This is a string'
result = 'This is a string'
expect(unbracket(test)).to eq result
end
it "should work using ActiveSupport mb_chars" do
test = '<This is a string>'.mb_chars
result = 'This is a string'
expect(unbracket(test)).to eq result
end
it "should work without parens using ActiveSupport mb_chars" do
test = 'This is a string'.mb_chars
result = 'This is a string'
expect(unbracket(test)).to eq(result)
end
end
describe "quoting phrases" do
it "should quote a phrase if it is unsafe" do
test = 'this.needs quoting'
result = '"this.needs quoting"'
expect(dquote(test)).to eq result
end
it "should properly quote a string, even if quoted but not escaped properly" do
test = '"this needs "escaping"'
result = '"this needs \"escaping"'
expect(dquote(test)).to eq result
end
it "should quote correctly a phrase with an escaped quote in it" do
test = 'this needs \"quoting'
result = '"this needs \\\\\\"quoting"'
expect(dquote(test)).to eq result
end
it "should quote correctly a phrase with an escaped backslash followed by an escaped quote in it" do
test = 'this needs \\\"quoting'
result = '"this needs \\\\\\\\\\"quoting"'
expect(dquote(test)).to eq result
end
end
describe "unquoting phrases" do
it "should remove quotes from the edge" do
expect(unquote('"This is quoted"')).to eq 'This is quoted'
end
it "should remove backslash escaping from quotes" do
expect(unquote('"This is \\"quoted\\""')).to eq 'This is "quoted"'
end
it "should remove backslash escaping from any char" do
expect(unquote('"This is \\quoted"')).to eq 'This is quoted'
end
it "should be able to handle unquoted strings" do
expect(unquote('This is not quoted')).to eq 'This is not quoted'
end
it "should preserve backslashes in unquoted strings" do
expect(unquote('This is not \"quoted')).to eq 'This is not \"quoted'
end
it "should be able to handle unquoted quotes" do
expect(unquote('"This is "quoted"')).to eq 'This is "quoted'
end
end
describe "parenthesizing phrases" do
it "should parenthesize a phrase" do
test = 'this.needs parenthesizing'
result = '(this.needs parenthesizing)'
expect(paren(test)).to eq result
end
it "should properly parenthesize a string, and escape properly" do
test = 'this needs (escaping'
result = '(this needs \(escaping)'
expect(paren(test)).to eq result
end
it "should properly parenthesize a string, and escape properly (other way)" do
test = 'this needs )escaping'
result = '(this needs \)escaping)'
expect(paren(test)).to eq result
end
it "should properly parenthesize a string, even if parenthesized but not escaped properly" do
test = '(this needs (escaping)'
result = '(this needs \(escaping)'
expect(paren(test)).to eq result
end
it "should properly parenthesize a string, even if parenthesized but not escaped properly (other way)" do
test = '(this needs )escaping)'
result = '(this needs \)escaping)'
expect(paren(test)).to eq result
end
it "should parenthesize correctly a phrase with an escaped parentheses in it" do
test = 'this needs \(parenthesizing'
result = '(this needs \(parenthesizing)'
expect(paren(test)).to eq result
end
it "should parenthesize correctly a phrase with an escaped parentheses in it (other way)" do
test = 'this needs \)parenthesizing'
result = '(this needs \)parenthesizing)'
expect(paren(test)).to eq result
end
it "should parenthesize correctly a phrase with an escaped backslash followed by an escaped parentheses in it" do
test = 'this needs \\\(parenthesizing'
result = '(this needs \\\(parenthesizing)'
expect(paren(test)).to eq result
end
it "should parenthesize correctly a phrase with an escaped backslash followed by an escaped parentheses in it (other way)" do
test = 'this needs \\\)parenthesizing'
result = '(this needs \\\)parenthesizing)'
expect(paren(test)).to eq result
end
it "should parenthesize correctly a phrase with a set of parentheses" do
test = 'this (needs) parenthesizing'
result = '(this \(needs\) parenthesizing)'
expect(paren(test)).to eq result
end
end
describe "bracketizing phrases" do
it "should bracketize a phrase" do
test = 'this.needs bracketizing'
result = '<this.needs bracketizing>'
expect(bracket(test)).to eq result
end
it "should properly bracketize a string, and escape properly" do
test = 'this needs <escaping'
result = '<this needs \<escaping>'
expect(bracket(test)).to eq result
end
it "should properly bracketize a string, and escape properly (other way)" do
test = 'this needs >escaping'
result = '<this needs \>escaping>'
expect(bracket(test)).to eq result
end
it "should properly bracketize a string, even if bracketized but not escaped properly" do
test = '<this needs <escaping>'
result = '<this needs \<escaping>'
expect(bracket(test)).to eq result
end
it "should properly bracketize a string, even if bracketized but not escaped properly (other way)" do
test = '<this needs >escaping>'
result = '<this needs \>escaping>'
expect(bracket(test)).to eq result
end
it "should bracketize correctly a phrase with an escaped brackets in it" do
test = 'this needs \<bracketizing'
result = '<this needs \<bracketizing>'
expect(bracket(test)).to eq result
end
it "should bracketize correctly a phrase with an escaped brackets in it (other way)" do
test = 'this needs \>bracketizing'
result = '<this needs \>bracketizing>'
expect(bracket(test)).to eq result
end
it "should bracketize correctly a phrase with an escaped backslash followed by an escaped brackets in it" do
test = 'this needs \\\<bracketizing'
result = '<this needs \\\<bracketizing>'
expect(bracket(test)).to eq result
end
it "should bracketize correctly a phrase with an escaped backslash followed by an escaped brackets in it (other way)" do
test = 'this needs \\\>bracketizing'
result = '<this needs \\\>bracketizing>'
expect(bracket(test)).to eq result
end
it "should bracketize correctly a phrase with a set of brackets" do
test = 'this <needs> bracketizing'
result = '<this \<needs\> bracketizing>'
expect(bracket(test)).to eq result
end
end
describe "url escaping" do
uri_parser = URI.const_defined?(:Parser) ? URI::Parser.new : URI
it "should have a wrapper on URI.escape" do
expect(uri_escape("@?@!")).to eq uri_parser.escape("@?@!")
end
it "should have a wrapper on URI.unescape" do
expect(uri_unescape("@?@!")).to eq uri_parser.unescape("@?@!")
end
end
describe "blank method" do
it "should say nil is blank" do
expect(Mail::Utilities.blank?(nil)).to be_truthy
end
it "should say false is blank" do
expect(Mail::Utilities.blank?(false)).to be_truthy
end
it "should say true is not blank" do
expect(Mail::Utilities.blank?(true)).not_to be_truthy
end
it "should say an empty array is blank" do
expect(Mail::Utilities.blank?([])).to be_truthy
end
it "should say an empty hash is blank" do
expect(Mail::Utilities.blank?({})).to be_truthy
end
it "should say an empty string is blank" do
expect(Mail::Utilities.blank?('')).to be_truthy
expect(Mail::Utilities.blank?(" ")).to be_truthy
a = ' ' * 1000
expect(Mail::Utilities.blank?(a)).to be_truthy
expect(Mail::Utilities.blank?("\t \n\n")).to be_truthy
end
end
describe "not blank method" do
it "should say a number is not blank" do
expect(Mail::Utilities.blank?(1)).not_to be_truthy
end
it "should say a valueless hash is not blank" do
expect(Mail::Utilities.blank?({:one => nil, :two => nil})).not_to be_truthy
end
it "should say a hash containing an empty hash is not blank" do
expect(Mail::Utilities.blank?({:key => {}})).not_to be_truthy
end
end
describe "to_lf" do
it "should change a single CR to LF" do
expect(Mail::Utilities.to_lf("\r")).to eq "\n"
end
it "should change multiple LF to CRLF" do
expect(Mail::Utilities.to_lf("\r\r")).to eq "\n\n"
end
it "should change a single CRLF to LF" do
expect(Mail::Utilities.to_lf("\r\n")).to eq "\n"
end
it "should change multiple CR to LF" do
expect(Mail::Utilities.to_lf("\r\n\r\n")).to eq "\n\n"
end
it "should not change LF" do
expect(Mail::Utilities.to_lf("\n")).to eq "\n"
end
it "should not change multiple CRLF" do
expect(Mail::Utilities.to_lf("\n\n")).to eq "\n\n"
end
it "should handle a mix" do
expect(Mail::Utilities.to_lf("\r \n\r\n")).to eq "\n \n\n"
end
if defined?(Encoding)
it "should not change the encoding of the string" do
saved_default_internal = Encoding.default_internal
Encoding.default_internal = "UTF-8"
ascii_string = "abcd".dup.force_encoding("ASCII-8BIT")
expect(Mail::Utilities.to_lf(ascii_string).encoding).to eq(Encoding::ASCII_8BIT)
Encoding.default_internal = saved_default_internal
end
end
describe "to_lf method on String" do
it "should leave lf as lf" do
expect(Mail::Utilities.to_lf("\n")).to eq "\n"
end
it "should clean just cr to lf" do
expect(Mail::Utilities.to_lf("\r")).to eq "\n"
end
it "should leave crlf as lf" do
expect(Mail::Utilities.to_lf("\r\n")).to eq "\n"
end
it "should handle japanese characters" do
string = "\343\201\202\343\201\210\343\201\206\343\201\210\343\201\212\r\n\r\n\343\201\213\343\201\215\343\201\217\343\201\221\343\201\223\r\n\r\n\343\201\225\343\201\227\343\201\244\343\201\233\343\201\235\r\n\r\n"
expect(Mail::Utilities.to_lf(string)).to eq "\343\201\202\343\201\210\343\201\206\343\201\210\343\201\212\n\n\343\201\213\343\201\215\343\201\217\343\201\221\343\201\223\n\n\343\201\225\343\201\227\343\201\244\343\201\233\343\201\235\n\n"
end
end
describe "methods on NilClass" do
it "should return empty string on to_lf" do
expect(Mail::Utilities.to_lf(nil)).to eq ''
end
end
describe "methods on subclass" do
it "should return String not subclass" do
klass = Class.new(String)
string = klass.new('')
expect(Mail::Utilities.to_lf(string)).to be_an_instance_of(String)
end
end
end
describe "to_crlf" do
describe "to_crlf method on String" do
it "should clean just lf to crlf" do
expect(Mail::Utilities.to_crlf("\n")).to eq "\r\n"
end
it "should clean just cr to crlf" do
expect(Mail::Utilities.to_crlf("\r")).to eq "\r\n"
end
it "should leave crlf as crlf" do
expect(Mail::Utilities.to_crlf("\r\n")).to eq "\r\n"
end
it "should handle japanese characters" do
string = "\343\201\202\343\201\210\343\201\206\343\201\210\343\201\212\r\n\r\n\343\201\213\343\201\215\343\201\217\343\201\221\343\201\223\r\n\r\n\343\201\225\343\201\227\343\201\244\343\201\233\343\201\235\r\n\r\n"
expect(Mail::Utilities.to_crlf(string)).to eq "\343\201\202\343\201\210\343\201\206\343\201\210\343\201\212\r\n\r\n\343\201\213\343\201\215\343\201\217\343\201\221\343\201\223\r\n\r\n\343\201\225\343\201\227\343\201\244\343\201\233\343\201\235\r\n\r\n"
end
if defined?(Encoding)
it "should not change the encoding of the string" do
saved_default_internal = Encoding.default_internal
Encoding.default_internal = "UTF-8"
ascii_string = "abcd".dup.force_encoding("ASCII-8BIT")
expect(Mail::Utilities.to_crlf(ascii_string).encoding).to eq(Encoding::ASCII_8BIT)
Encoding.default_internal = saved_default_internal
end
end
end
describe "methods on NilClass" do
it "should return empty string on to_crlf" do
expect(Mail::Utilities.to_crlf(nil)).to eq ''
end
end
describe "methods on subclass" do
it "should return String not subclass" do
klass = Class.new(String)
string = klass.new('')
expect(Mail::Utilities.to_crlf(string)).to be_an_instance_of(String)
end
end
describe "to_crlf" do
it "should change a single LF to CRLF" do
expect(Mail::Utilities.to_crlf("\n")).to eq "\r\n"
end
it "should change multiple LF to CRLF" do
expect(Mail::Utilities.to_crlf("\n\n")).to eq "\r\n\r\n"
end
it "should change a single CR to CRLF" do
expect(Mail::Utilities.to_crlf("\r")).to eq "\r\n"
end
it "should not change CRLF" do
expect(Mail::Utilities.to_crlf("\r\n")).to eq "\r\n"
end
it "should not change multiple CRLF" do
expect(Mail::Utilities.to_crlf("\r\n\r\n")).to eq "\r\n\r\n"
end
it "should handle a mix" do
expect(Mail::Utilities.to_crlf("\r \n\r\n")).to eq "\r\n \r\n\r\n"
end
end
end
end
|