Решение на Четвърта задача от Орлин Христов

Обратно към всички решения

Към профила на Орлин Христов

Резултати

  • 2 точки от тестове
  • 0 бонус точки
  • 2 точки общо
  • 11 успешни тест(а)
  • 30 неуспешни тест(а)

Код

class PrivacyFilter
attr_accessor :preserve_phone_country_code
attr_accessor :preserve_mail_hostname
attr_accessor :partially_preserve_email_username
def initialize(text)
@text = text
@preserve_phone_country_code = false
@preserve_mail_hostname = false
@partially_preserve_email_username = false
end
def filtered
filter_phones(filter_emails @text)
end
private
def filter_emails(text)
email = /[a-zA-Z0-9][\w+\.-]{,200}@(([a-zA-Z0-9][a-zA-Z0-9-]{,61})?[a-zA-Z0-9]\.)+\.[a-zA-Z]{2,3}(\.[a-zA-Z]{2})?/
text.gsub email '[EMAIL]'
end
def filter_phones(text)
text.gsub(/(0|(\+|(00)[1-9]\d{,2})([- ()]{,2}\d){6,11})/, '[PHONE]')
end
end
module Validations
class << self
def email?(value)
user, host = value.split '@', 3
/^[a-zA-Z0-9][a-zA-Z0-9_+\.-]{,200}$/ =~ user and
hostname? host
end
def phone?(value)
/^(0|(\+|(00)[1-9]\d{,2})([- ()]{,2}\d){6,11})$/ =~ value
end
def hostname?(value)
/^(([a-zA-Z0-9][a-zA-Z0-9-]{,61})?[a-zA-Z0-9]\.)+\.[a-zA-Z]{2,3}(\.[a-zA-Z]{2})?$/ =~ value
end
def ip_address?(value)
match = /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/.match(value)
(match || false) and match[1, 4].all? { |byte| (0..255).member? byte.to_i }
end
def number?(value)
/^-?0|([1-9]\d*)(\.\d+)?$/ =~ value
end
def integer?(value)
/^-?0|([1-9]\d*)$/ =~ value
end
def date?(value)
/^\d{4}-(\d|(1[0-2]))-(([12]?\d)|3[01])$/ =~ value
end
def time?(value)
/^([01]\d)|(2[0-3]):([0-5]\d):([0-5]\d)$/ =~ value
end
def date_time?(value)
/^\d{4}-(\d|(1[0-2]))-(([12]?\d)|3[01])[ T]([01]\d)|(2[0-3]):([0-5]\d):([0-5]\d)$/ =~ value
end
end
end

Лог от изпълнението

FFFFFFFFFFFFFFFFF..F.F..F.FF.FF.FF..F.FFF

Failures:

  1) PrivacyFilter works with blank or whitespace strings and preserves whitespace
     Failure/Error: PrivacyFilter.new(text).filtered
     NoMethodError:
       undefined method `email' for #<PrivacyFilter:0x9aa0df8>
     # /tmp/d20130203-23049-fs8p20/solution.rb:20:in `filter_emails'
     # /tmp/d20130203-23049-fs8p20/solution.rb:14:in `filtered'
     # /tmp/d20130203-23049-fs8p20/spec.rb:5:in `filter'
     # /tmp/d20130203-23049-fs8p20/spec.rb:21:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  2) PrivacyFilter obfuscates simple emails
     Failure/Error: PrivacyFilter.new(text).filtered
     NoMethodError:
       undefined method `email' for #<PrivacyFilter:0x9aa4c8c>
     # /tmp/d20130203-23049-fs8p20/solution.rb:20:in `filter_emails'
     # /tmp/d20130203-23049-fs8p20/solution.rb:14:in `filtered'
     # /tmp/d20130203-23049-fs8p20/spec.rb:5:in `filter'
     # /tmp/d20130203-23049-fs8p20/spec.rb:27:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  3) PrivacyFilter obfuscates more complicated emails
     Failure/Error: PrivacyFilter.new(text).filtered
     NoMethodError:
       undefined method `email' for #<PrivacyFilter:0x9aa88a0>
     # /tmp/d20130203-23049-fs8p20/solution.rb:20:in `filter_emails'
     # /tmp/d20130203-23049-fs8p20/solution.rb:14:in `filtered'
     # /tmp/d20130203-23049-fs8p20/spec.rb:5:in `filter'
     # /tmp/d20130203-23049-fs8p20/spec.rb:40:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-fs8p20/spec.rb:39:in `each'
     # /tmp/d20130203-23049-fs8p20/spec.rb:39:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  4) PrivacyFilter does not filter invalid emails
     Failure/Error: PrivacyFilter.new(text).filtered
     NoMethodError:
       undefined method `email' for #<PrivacyFilter:0x9aad288>
     # /tmp/d20130203-23049-fs8p20/solution.rb:20:in `filter_emails'
     # /tmp/d20130203-23049-fs8p20/solution.rb:14:in `filtered'
     # /tmp/d20130203-23049-fs8p20/spec.rb:5:in `filter'
     # /tmp/d20130203-23049-fs8p20/spec.rb:52:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-fs8p20/spec.rb:46:in `each'
     # /tmp/d20130203-23049-fs8p20/spec.rb:46:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  5) PrivacyFilter allows email hostname to be preserved
     Failure/Error: filter.preserve_email_hostname = true
     NoMethodError:
       undefined method `preserve_email_hostname=' for #<PrivacyFilter:0x9ab8174>
     # /tmp/d20130203-23049-fs8p20/spec.rb:10:in `filter_email_usernames'
     # /tmp/d20130203-23049-fs8p20/spec.rb:60:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  6) PrivacyFilter allows email usernames to be partially preserved
     Failure/Error: filter.filtered
     NoMethodError:
       undefined method `email' for #<PrivacyFilter:0x9aba7a8>
     # /tmp/d20130203-23049-fs8p20/solution.rb:20:in `filter_emails'
     # /tmp/d20130203-23049-fs8p20/solution.rb:14:in `filtered'
     # /tmp/d20130203-23049-fs8p20/spec.rb:17:in `partially_filter_email_usernames'
     # /tmp/d20130203-23049-fs8p20/spec.rb:65:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  7) PrivacyFilter filters whole email usernames if too short
     Failure/Error: filter.filtered
     NoMethodError:
       undefined method `email' for #<PrivacyFilter:0x9ac26d8>
     # /tmp/d20130203-23049-fs8p20/solution.rb:20:in `filter_emails'
     # /tmp/d20130203-23049-fs8p20/solution.rb:14:in `filtered'
     # /tmp/d20130203-23049-fs8p20/spec.rb:17:in `partially_filter_email_usernames'
     # /tmp/d20130203-23049-fs8p20/spec.rb:69:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  8) PrivacyFilter does not brake with unicode
     Failure/Error: filter.filtered
     NoMethodError:
       undefined method `email' for #<PrivacyFilter:0x9ac8524>
     # /tmp/d20130203-23049-fs8p20/solution.rb:20:in `filter_emails'
     # /tmp/d20130203-23049-fs8p20/solution.rb:14:in `filtered'
     # /tmp/d20130203-23049-fs8p20/spec.rb:17:in `partially_filter_email_usernames'
     # /tmp/d20130203-23049-fs8p20/spec.rb:73:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  9) PrivacyFilter filters more complex phone numbers
     Failure/Error: PrivacyFilter.new(text).filtered
     NoMethodError:
       undefined method `email' for #<PrivacyFilter:0x9cfc390>
     # /tmp/d20130203-23049-fs8p20/solution.rb:20:in `filter_emails'
     # /tmp/d20130203-23049-fs8p20/solution.rb:14:in `filtered'
     # /tmp/d20130203-23049-fs8p20/spec.rb:5:in `filter'
     # /tmp/d20130203-23049-fs8p20/spec.rb:85:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-fs8p20/spec.rb:84:in `each'
     # /tmp/d20130203-23049-fs8p20/spec.rb:84:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  10) PrivacyFilter does not filter invalid phone numbers
     Failure/Error: PrivacyFilter.new(text).filtered
     NoMethodError:
       undefined method `email' for #<PrivacyFilter:0x9cfb544>
     # /tmp/d20130203-23049-fs8p20/solution.rb:20:in `filter_emails'
     # /tmp/d20130203-23049-fs8p20/solution.rb:14:in `filtered'
     # /tmp/d20130203-23049-fs8p20/spec.rb:5:in `filter'
     # /tmp/d20130203-23049-fs8p20/spec.rb:96:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-fs8p20/spec.rb:95:in `each'
     # /tmp/d20130203-23049-fs8p20/spec.rb:95:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  11) PrivacyFilter preserves whitespace around phones
     Failure/Error: PrivacyFilter.new(text).filtered
     NoMethodError:
       undefined method `email' for #<PrivacyFilter:0x9cfa090>
     # /tmp/d20130203-23049-fs8p20/solution.rb:20:in `filter_emails'
     # /tmp/d20130203-23049-fs8p20/solution.rb:14:in `filtered'
     # /tmp/d20130203-23049-fs8p20/spec.rb:5:in `filter'
     # /tmp/d20130203-23049-fs8p20/spec.rb:101:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  12) PrivacyFilter filters more than one phone or email
     Failure/Error: PrivacyFilter.new(text).filtered
     NoMethodError:
       undefined method `email' for #<PrivacyFilter:0xa2ec46c>
     # /tmp/d20130203-23049-fs8p20/solution.rb:20:in `filter_emails'
     # /tmp/d20130203-23049-fs8p20/solution.rb:14:in `filtered'
     # /tmp/d20130203-23049-fs8p20/spec.rb:5:in `filter'
     # /tmp/d20130203-23049-fs8p20/spec.rb:119:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  13) PrivacyFilter allows country code to be preserved for internationally-formatted phone numbers
     Failure/Error: filter.filtered.should eq filtered
     NoMethodError:
       undefined method `email' for #<PrivacyFilter:0xa2ea950>
     # /tmp/d20130203-23049-fs8p20/solution.rb:20:in `filter_emails'
     # /tmp/d20130203-23049-fs8p20/solution.rb:14:in `filtered'
     # /tmp/d20130203-23049-fs8p20/spec.rb:132:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-fs8p20/spec.rb:129:in `each'
     # /tmp/d20130203-23049-fs8p20/spec.rb:129:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  14) PrivacyFilter separates preserved country code from filtered phone with a space
     Failure/Error: filter.filtered.should eq filtered
     NoMethodError:
       undefined method `email' for #<PrivacyFilter:0xa2f0ddc>
     # /tmp/d20130203-23049-fs8p20/solution.rb:20:in `filter_emails'
     # /tmp/d20130203-23049-fs8p20/solution.rb:14:in `filtered'
     # /tmp/d20130203-23049-fs8p20/spec.rb:144:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-fs8p20/spec.rb:141:in `each'
     # /tmp/d20130203-23049-fs8p20/spec.rb:141:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  15) Validations allows validation for emails
     Failure/Error: Validations.email?('foo@bar.com').should be_true
       expected: true value
            got: nil
     # /tmp/d20130203-23049-fs8p20/spec.rb:151:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  16) Validations returns boolean true or false
     Failure/Error: Validations.email?('foo@bar.com').should be(true)
       
       expected #<TrueClass:2> => true
            got #<NilClass:4> => nil
       
       Compared using equal?, which compares object identity,
       but expected and actual are not the same object. Use
       'actual.should eq(expected)' if you don't care about
       object identity in this example.
     # /tmp/d20130203-23049-fs8p20/spec.rb:156:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  17) Validations can validate more complex emails
     Failure/Error: Validations.email?(email).should be(valid)
       
       expected #<TrueClass:2> => true
            got #<NilClass:4> => nil
       
       Compared using equal?, which compares object identity,
       but expected and actual are not the same object. Use
       'actual.should eq(expected)' if you don't care about
       object identity in this example.
     # /tmp/d20130203-23049-fs8p20/spec.rb:171:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-fs8p20/spec.rb:170:in `each'
     # /tmp/d20130203-23049-fs8p20/spec.rb:170:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  18) Validations can validate more complex phone numbers
     Failure/Error: Validations.phone?(phone).should be(valid)
       
       expected #<TrueClass:2> => true
            got #<NilClass:4> => nil
       
       Compared using equal?, which compares object identity,
       but expected and actual are not the same object. Use
       'actual.should eq(expected)' if you don't care about
       object identity in this example.
     # /tmp/d20130203-23049-fs8p20/spec.rb:210:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-fs8p20/spec.rb:209:in `each'
     # /tmp/d20130203-23049-fs8p20/spec.rb:209:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  19) Validations validates hostnames
     Failure/Error: Validations.hostname?('domain.tld').should be_true
       expected: true value
            got: nil
     # /tmp/d20130203-23049-fs8p20/spec.rb:219:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  20) Validations handles multiline strings in IP validation properly
     Failure/Error: Validations.ip_address?("8.8.8.8\n").should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-fs8p20/spec.rb:245:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  21) Validations validates more complex numbers
     Failure/Error: Validations.number?('00').should be_false
       expected: false value
            got: 0
     # /tmp/d20130203-23049-fs8p20/spec.rb:263:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  22) Validations handles multiline strings in numbers validation properly
     Failure/Error: Validations.number?("42\n24").should be_false
       expected: false value
            got: 0
     # /tmp/d20130203-23049-fs8p20/spec.rb:274:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  23) Validations validates more complex integers
     Failure/Error: Validations.integer?('00').should be_false
       expected: false value
            got: 0
     # /tmp/d20130203-23049-fs8p20/spec.rb:286:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  24) Validations handles multiline strings in integer validation properly
     Failure/Error: Validations.number?("42\n24").should be_false
       expected: false value
            got: 0
     # /tmp/d20130203-23049-fs8p20/spec.rb:295:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  25) Validations allows zero years in date validation
     Failure/Error: Validations.date?('0000-01-01').should be_true
       expected: true value
            got: nil
     # /tmp/d20130203-23049-fs8p20/spec.rb:307:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  26) Validations allows huge years in date validation
     Failure/Error: Validations.date?('9999-01-01').should be_true
       expected: true value
            got: nil
     # /tmp/d20130203-23049-fs8p20/spec.rb:311:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  27) Validations handles newlines in date validation
     Failure/Error: Validations.date?("2012-11-19\n").should be_false
       expected: false value
            got: 0
     # /tmp/d20130203-23049-fs8p20/spec.rb:327:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  28) Validations does not allow invalid hours, minutes or seconds
     Failure/Error: Validations.time?('12:69:00').should be_false
       expected: false value
            got: 0
     # /tmp/d20130203-23049-fs8p20/spec.rb:341:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  29) Validations validates datetime values
     Failure/Error: Validations.date_time?('2012-00-19T23:59:00').should be_false
       expected: false value
            got: 11
     # /tmp/d20130203-23049-fs8p20/spec.rb:352:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  30) Validations handles newlines in time and datetime validation
     Failure/Error: Validations.time?("12:01:01\n").should be_false
       expected: false value
            got: 0
     # /tmp/d20130203-23049-fs8p20/spec.rb:360:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

Finished in 0.04643 seconds
41 examples, 30 failures

Failed examples:

rspec /tmp/d20130203-23049-fs8p20/spec.rb:20 # PrivacyFilter works with blank or whitespace strings and preserves whitespace
rspec /tmp/d20130203-23049-fs8p20/spec.rb:26 # PrivacyFilter obfuscates simple emails
rspec /tmp/d20130203-23049-fs8p20/spec.rb:30 # PrivacyFilter obfuscates more complicated emails
rspec /tmp/d20130203-23049-fs8p20/spec.rb:44 # PrivacyFilter does not filter invalid emails
rspec /tmp/d20130203-23049-fs8p20/spec.rb:59 # PrivacyFilter allows email hostname to be preserved
rspec /tmp/d20130203-23049-fs8p20/spec.rb:64 # PrivacyFilter allows email usernames to be partially preserved
rspec /tmp/d20130203-23049-fs8p20/spec.rb:68 # PrivacyFilter filters whole email usernames if too short
rspec /tmp/d20130203-23049-fs8p20/spec.rb:72 # PrivacyFilter does not brake with unicode
rspec /tmp/d20130203-23049-fs8p20/spec.rb:76 # PrivacyFilter filters more complex phone numbers
rspec /tmp/d20130203-23049-fs8p20/spec.rb:89 # PrivacyFilter does not filter invalid phone numbers
rspec /tmp/d20130203-23049-fs8p20/spec.rb:100 # PrivacyFilter preserves whitespace around phones
rspec /tmp/d20130203-23049-fs8p20/spec.rb:104 # PrivacyFilter filters more than one phone or email
rspec /tmp/d20130203-23049-fs8p20/spec.rb:122 # PrivacyFilter allows country code to be preserved for internationally-formatted phone numbers
rspec /tmp/d20130203-23049-fs8p20/spec.rb:136 # PrivacyFilter separates preserved country code from filtered phone with a space
rspec /tmp/d20130203-23049-fs8p20/spec.rb:150 # Validations allows validation for emails
rspec /tmp/d20130203-23049-fs8p20/spec.rb:155 # Validations returns boolean true or false
rspec /tmp/d20130203-23049-fs8p20/spec.rb:160 # Validations can validate more complex emails
rspec /tmp/d20130203-23049-fs8p20/spec.rb:184 # Validations can validate more complex phone numbers
rspec /tmp/d20130203-23049-fs8p20/spec.rb:218 # Validations validates hostnames
rspec /tmp/d20130203-23049-fs8p20/spec.rb:244 # Validations handles multiline strings in IP validation properly
rspec /tmp/d20130203-23049-fs8p20/spec.rb:257 # Validations validates more complex numbers
rspec /tmp/d20130203-23049-fs8p20/spec.rb:273 # Validations handles multiline strings in numbers validation properly
rspec /tmp/d20130203-23049-fs8p20/spec.rb:283 # Validations validates more complex integers
rspec /tmp/d20130203-23049-fs8p20/spec.rb:294 # Validations handles multiline strings in integer validation properly
rspec /tmp/d20130203-23049-fs8p20/spec.rb:306 # Validations allows zero years in date validation
rspec /tmp/d20130203-23049-fs8p20/spec.rb:310 # Validations allows huge years in date validation
rspec /tmp/d20130203-23049-fs8p20/spec.rb:326 # Validations handles newlines in date validation
rspec /tmp/d20130203-23049-fs8p20/spec.rb:339 # Validations does not allow invalid hours, minutes or seconds
rspec /tmp/d20130203-23049-fs8p20/spec.rb:347 # Validations validates datetime values
rspec /tmp/d20130203-23049-fs8p20/spec.rb:359 # Validations handles newlines in time and datetime validation

История (2 версии и 0 коментара)

Орлин обнови решението на 28.11.2012 16:41 (преди над 11 години)

+#class PrivacyFilter
+# attr_accessor : :preserve_phone_country_code, :preserve_mail_hostname, :partially_preserve_email_username
+
+# def initialize(text)
+# @text = text
+# @preserve_phone_country_code = false
+# @preserve_mail_hostname = false
+# @partially_preserve_email_username = false
+# end
+
+# def filtered
+# end
+#
+# private
+# def filter_emails:
+# end
+
+# def filter_phones:
+# end
+#end
+
+module Validations
+ class << self
+ def email?(value)
+ user, host = value.split '@', 3
+ /^[a-zA-Z0-9][a-zA-Z0-9_+\.-]{,200}$/ =~ user and
+ hostname? host
+ end
+
+ def phone?(value)
+ /^(0|(+|(00)[1-9]\d{,2})([- ()]{,2}\d){6,11})$/ =~ value
+ end
+
+ def hostname?(value)
+ /^(([a-zA-Z0-9][a-zA-Z0-9-]{,61})?[a-zA-Z0-9]\.)+\.[a-zA-Z]{2,3}(\.[a-zA-Z]{2})?$/ =~ value
+ end
+
+ def ip_address?(value)
+ match = /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/.match(value)
+ (match || false) and match[1, 4].all? { |byte| (0..255).member? byte.to_i }
+ end
+
+ def number?(value)
+ /^-?0|([1-9]\d*)(\.\d+)?$/ =~ value
+ end
+
+ def integer?(value)
+ /^-?0|([1-9]\d*)$/ =~ value
+ end
+
+ def date?(value)
+ /^\d{4}-(\d|(1[0-2]))-(([12]?\d)|3[01])$/ =~ value
+ end
+
+ def time?(value)
+ /^([01]\d)|(2[0-3]):([0-5]\d):([0-5]\d)$/ =~ value
+ end
+
+ def date_time?(value)
+ /^\d{4}-(\d|(1[0-2]))-(([12]?\d)|3[01])[ T]([01]\d)|(2[0-3]):([0-5]\d):([0-5]\d)$/ =~ value
+ end
+ end
+end

Орлин обнови решението на 28.11.2012 16:54 (преди над 11 години)

-#class PrivacyFilter
-# attr_accessor : :preserve_phone_country_code, :preserve_mail_hostname, :partially_preserve_email_username
+class PrivacyFilter
+ attr_accessor :preserve_phone_country_code
+ attr_accessor :preserve_mail_hostname
+ attr_accessor :partially_preserve_email_username
-# def initialize(text)
-# @text = text
-# @preserve_phone_country_code = false
-# @preserve_mail_hostname = false
-# @partially_preserve_email_username = false
-# end
+ def initialize(text)
+ @text = text
+ @preserve_phone_country_code = false
+ @preserve_mail_hostname = false
+ @partially_preserve_email_username = false
+ end
-# def filtered
-# end
-#
-# private
-# def filter_emails:
-# end
+ def filtered
+ filter_phones(filter_emails @text)
+ end
-# def filter_phones:
-# end
-#end
+ private
+ def filter_emails(text)
+ email = /[a-zA-Z0-9][\w+\.-]{,200}@(([a-zA-Z0-9][a-zA-Z0-9-]{,61})?[a-zA-Z0-9]\.)+\.[a-zA-Z]{2,3}(\.[a-zA-Z]{2})?/
+ text.gsub email '[EMAIL]'
+ end
+ def filter_phones(text)
+ text.gsub(/(0|(\+|(00)[1-9]\d{,2})([- ()]{,2}\d){6,11})/, '[PHONE]')
+ end
+end
+
module Validations
class << self
def email?(value)
user, host = value.split '@', 3
/^[a-zA-Z0-9][a-zA-Z0-9_+\.-]{,200}$/ =~ user and
hostname? host
end
def phone?(value)
- /^(0|(+|(00)[1-9]\d{,2})([- ()]{,2}\d){6,11})$/ =~ value
+ /^(0|(\+|(00)[1-9]\d{,2})([- ()]{,2}\d){6,11})$/ =~ value
end
def hostname?(value)
/^(([a-zA-Z0-9][a-zA-Z0-9-]{,61})?[a-zA-Z0-9]\.)+\.[a-zA-Z]{2,3}(\.[a-zA-Z]{2})?$/ =~ value
end
def ip_address?(value)
match = /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/.match(value)
(match || false) and match[1, 4].all? { |byte| (0..255).member? byte.to_i }
end
def number?(value)
/^-?0|([1-9]\d*)(\.\d+)?$/ =~ value
end
def integer?(value)
/^-?0|([1-9]\d*)$/ =~ value
end
def date?(value)
/^\d{4}-(\d|(1[0-2]))-(([12]?\d)|3[01])$/ =~ value
end
def time?(value)
/^([01]\d)|(2[0-3]):([0-5]\d):([0-5]\d)$/ =~ value
end
def date_time?(value)
/^\d{4}-(\d|(1[0-2]))-(([12]?\d)|3[01])[ T]([01]\d)|(2[0-3]):([0-5]\d):([0-5]\d)$/ =~ value
end
end
end