Решение на Четвърта задача от Тодор Ганчев

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

Към профила на Тодор Ганчев

Резултати

  • 1 точка от тестове
  • 0 бонус точки
  • 1 точка общо
  • 5 успешни тест(а)
  • 36 неуспешни тест(а)

Код

class PrivacyFilter
def initialize(text)
@text = text
end
def filtered
@text
end
end
class Validations
def self.email?(value)
/^(\w[\w\_\+\.-]*)@(\w[\w-]*\w\.)+(\D\D\D?)(\.\D\D)?$/ === value
end
def self.hostname?(value)
/^(\w[\w-]*\w\.)+(\D\D\D?)(\.\D\D)?$/ === value
end
def self.phone?(value)
/^((0)|(((00)|(\+))(\d\d?\d?)))(([\s\-\(\)]?\d[\s\-\(\)]?)*)$/ === value
end
end

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

.FFFFFFFF.FFFF..FF.FFFFFFFFFFFFFFFFFFFFFF

Failures:

  1) PrivacyFilter obfuscates simple emails
     Failure/Error: filter('Contact: someone@example.com').should eq 'Contact: [EMAIL]'
       
       expected: "Contact: [EMAIL]"
            got: "Contact: someone@example.com"
       
       (compared using ==)
     # /tmp/d20130203-23049-9du1mt/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)>'

  2) PrivacyFilter obfuscates more complicated emails
     Failure/Error: filter(text).should eq filtered
       
       expected: "[EMAIL]"
            got: "some.user+and-more-here@gmail.com"
       
       (compared using ==)
     # /tmp/d20130203-23049-9du1mt/spec.rb:40:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-9du1mt/spec.rb:39:in `each'
     # /tmp/d20130203-23049-9du1mt/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)>'

  3) PrivacyFilter does not filter invalid emails
     Failure/Error: filter.preserve_email_hostname = true
     NoMethodError:
       undefined method `preserve_email_hostname=' for #<PrivacyFilter:0x89f6d2c>
     # /tmp/d20130203-23049-9du1mt/spec.rb:10:in `filter_email_usernames'
     # /tmp/d20130203-23049-9du1mt/spec.rb:54:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-9du1mt/spec.rb:46:in `each'
     # /tmp/d20130203-23049-9du1mt/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)>'

  4) PrivacyFilter allows email hostname to be preserved
     Failure/Error: filter.preserve_email_hostname = true
     NoMethodError:
       undefined method `preserve_email_hostname=' for #<PrivacyFilter:0x8c2ab48 @text="someone@example.com">
     # /tmp/d20130203-23049-9du1mt/spec.rb:10:in `filter_email_usernames'
     # /tmp/d20130203-23049-9du1mt/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)>'

  5) PrivacyFilter allows email usernames to be partially preserved
     Failure/Error: filter.partially_preserve_email_username = true
     NoMethodError:
       undefined method `partially_preserve_email_username=' for #<PrivacyFilter:0x8c29d60 @text="someone@example.com">
     # /tmp/d20130203-23049-9du1mt/spec.rb:16:in `partially_filter_email_usernames'
     # /tmp/d20130203-23049-9du1mt/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)>'

  6) PrivacyFilter filters whole email usernames if too short
     Failure/Error: filter.partially_preserve_email_username = true
     NoMethodError:
       undefined method `partially_preserve_email_username=' for #<PrivacyFilter:0x8c27d1c @text="me@example.com">
     # /tmp/d20130203-23049-9du1mt/spec.rb:16:in `partially_filter_email_usernames'
     # /tmp/d20130203-23049-9du1mt/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)>'

  7) PrivacyFilter does not brake with unicode
     Failure/Error: filter.partially_preserve_email_username = true
     NoMethodError:
       undefined method `partially_preserve_email_username=' for #<PrivacyFilter:0x9217218>
     # /tmp/d20130203-23049-9du1mt/spec.rb:16:in `partially_filter_email_usernames'
     # /tmp/d20130203-23049-9du1mt/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)>'

  8) PrivacyFilter filters more complex phone numbers
     Failure/Error: filter(text).should eq filtered
       
       expected: "Reach me at: [PHONE]"
            got: "Reach me at: 0885123123"
       
       (compared using ==)
     # /tmp/d20130203-23049-9du1mt/spec.rb:85:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-9du1mt/spec.rb:84:in `each'
     # /tmp/d20130203-23049-9du1mt/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)>'

  9) PrivacyFilter preserves whitespace around phones
     Failure/Error: filter(' +359881212-12-1 2 or...').should eq ' [PHONE] or...'
       
       expected: " [PHONE] or..."
            got: " +359881212-12-1 2 or..."
       
       (compared using ==)
     # /tmp/d20130203-23049-9du1mt/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)>'

  10) PrivacyFilter filters more than one phone or email
     Failure/Error: filter(text).should eq filtered
       
       expected: "\n      Contacts\n\n      Phones: [PHONE] or [PHONE]\n      Email: [EMAIL] or [EMAIL]\n    "
            got: "\n      Contacts\n\n      Phones: +1 (555) 123-456-99 or 004412125543\n      Email: contact@company.co.uk or sales@office.us\n    "
       
       (compared using ==)
       
       Diff:
       @@ -1,7 +1,7 @@
        
              Contacts
        
       -      Phones: [PHONE] or [PHONE]
       -      Email: [EMAIL] or [EMAIL]
       +      Phones: +1 (555) 123-456-99 or 004412125543
       +      Email: contact@company.co.uk or sales@office.us
            
     # /tmp/d20130203-23049-9du1mt/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)>'

  11) PrivacyFilter allows country code to be preserved for internationally-formatted phone numbers
     Failure/Error: filter.preserve_phone_country_code = true
     NoMethodError:
       undefined method `preserve_phone_country_code=' for #<PrivacyFilter:0x921e928 @text="Phone: +359 2 555-1212">
     # /tmp/d20130203-23049-9du1mt/spec.rb:131:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-9du1mt/spec.rb:129:in `each'
     # /tmp/d20130203-23049-9du1mt/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)>'

  12) PrivacyFilter separates preserved country code from filtered phone with a space
     Failure/Error: filter.preserve_phone_country_code = true
     NoMethodError:
       undefined method `preserve_phone_country_code=' for #<PrivacyFilter:0x92265ec @text="Phone: 0025 (55) 12 12255">
     # /tmp/d20130203-23049-9du1mt/spec.rb:143:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-9du1mt/spec.rb:141:in `each'
     # /tmp/d20130203-23049-9du1mt/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)>'

  13) Validations can validate more complex emails
     Failure/Error: Validations.email?(email).should be(valid)
       
       expected #<FalseClass:0> => false
            got #<TrueClass:2> => true
       
       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-9du1mt/spec.rb:171:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-9du1mt/spec.rb:170:in `each'
     # /tmp/d20130203-23049-9du1mt/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)>'

  14) Validations does not break on emails in multiline strings
     Failure/Error: Validations.email?("foo@bar.com\nwat?").should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-9du1mt/spec.rb:176: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 can validate more complex phone numbers
     Failure/Error: Validations.phone?(phone).should be(valid)
       
       expected #<TrueClass:2> => true
            got #<FalseClass:0> => false
       
       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-9du1mt/spec.rb:210:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-9du1mt/spec.rb:209:in `each'
     # /tmp/d20130203-23049-9du1mt/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)>'

  16) Validations does not break on phones in multiline strings
     Failure/Error: Validations.phone?("0885123123\nwat?").should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-9du1mt/spec.rb:215: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 validates hostnames
     Failure/Error: Validations.hostname?('1.2.3.4.xip.io').should be_true
       expected: true value
            got: false
     # /tmp/d20130203-23049-9du1mt/spec.rb:222: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 handles multiline strings in hostname validation properly
     Failure/Error: Validations.hostname?("foo.com\n").should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-9du1mt/spec.rb:233: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 IP addresses
     Failure/Error: Validations.ip_address?('1.2.3.4').should be_true
     NoMethodError:
       undefined method `ip_address?' for Validations:Class
     # /tmp/d20130203-23049-9du1mt/spec.rb:238: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
     NoMethodError:
       undefined method `ip_address?' for Validations:Class
     # /tmp/d20130203-23049-9du1mt/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 numbers
     Failure/Error: Validations.number?('42').should be_true
     NoMethodError:
       undefined method `number?' for Validations:Class
     # /tmp/d20130203-23049-9du1mt/spec.rb:251: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 validates more complex numbers
     Failure/Error: Validations.number?(' 42 ').should be_false
     NoMethodError:
       undefined method `number?' for Validations:Class
     # /tmp/d20130203-23049-9du1mt/spec.rb:258: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 handles multiline strings in numbers validation properly
     Failure/Error: Validations.number?("42\n24").should be_false
     NoMethodError:
       undefined method `number?' for Validations:Class
     # /tmp/d20130203-23049-9du1mt/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)>'

  24) Validations validates integers
     Failure/Error: Validations.integer?('42').should be_true
     NoMethodError:
       undefined method `integer?' for Validations:Class
     # /tmp/d20130203-23049-9du1mt/spec.rb:279: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 validates more complex integers
     Failure/Error: Validations.integer?(' 42 ').should be_false
     NoMethodError:
       undefined method `integer?' for Validations:Class
     # /tmp/d20130203-23049-9du1mt/spec.rb:284: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 handles multiline strings in integer validation properly
     Failure/Error: Validations.number?("42\n24").should be_false
     NoMethodError:
       undefined method `number?' for Validations:Class
     # /tmp/d20130203-23049-9du1mt/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)>'

  27) Validations validates dates
     Failure/Error: Validations.date?('2012-11-19').should be_true
     NoMethodError:
       undefined method `date?' for Validations:Class
     # /tmp/d20130203-23049-9du1mt/spec.rb:300: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 allows zero years in date validation
     Failure/Error: Validations.date?('0000-01-01').should be_true
     NoMethodError:
       undefined method `date?' for Validations:Class
     # /tmp/d20130203-23049-9du1mt/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)>'

  29) Validations allows huge years in date validation
     Failure/Error: Validations.date?('9999-01-01').should be_true
     NoMethodError:
       undefined method `date?' for Validations:Class
     # /tmp/d20130203-23049-9du1mt/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)>'

  30) Validations does not allow zero months or days in dates
     Failure/Error: Validations.date?('1000-00-01').should be_false
     NoMethodError:
       undefined method `date?' for Validations:Class
     # /tmp/d20130203-23049-9du1mt/spec.rb:315: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)>'

  31) Validations does not allow invalid months or days in dates
     Failure/Error: Validations.date?('2012-13-01').should be_false
     NoMethodError:
       undefined method `date?' for Validations:Class
     # /tmp/d20130203-23049-9du1mt/spec.rb:321: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)>'

  32) Validations handles newlines in date validation
     Failure/Error: Validations.date?("2012-11-19\n").should be_false
     NoMethodError:
       undefined method `date?' for Validations:Class
     # /tmp/d20130203-23049-9du1mt/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)>'

  33) Validations validates times
     Failure/Error: Validations.time?('12:00:00').should be_true
     NoMethodError:
       undefined method `time?' for Validations:Class
     # /tmp/d20130203-23049-9du1mt/spec.rb:332: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)>'

  34) Validations does not allow invalid hours, minutes or seconds
     Failure/Error: Validations.time?('24:00:00').should be_false
     NoMethodError:
       undefined method `time?' for Validations:Class
     # /tmp/d20130203-23049-9du1mt/spec.rb:340: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)>'

  35) Validations validates datetime values
     Failure/Error: Validations.date_time?('2012-11-19 19:00:00').should be_true
     NoMethodError:
       undefined method `date_time?' for Validations:Class
     # /tmp/d20130203-23049-9du1mt/spec.rb:348: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)>'

  36) Validations handles newlines in time and datetime validation
     Failure/Error: Validations.time?("12:01:01\n").should be_false
     NoMethodError:
       undefined method `time?' for Validations:Class
     # /tmp/d20130203-23049-9du1mt/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.05033 seconds
41 examples, 36 failures

Failed examples:

rspec /tmp/d20130203-23049-9du1mt/spec.rb:26 # PrivacyFilter obfuscates simple emails
rspec /tmp/d20130203-23049-9du1mt/spec.rb:30 # PrivacyFilter obfuscates more complicated emails
rspec /tmp/d20130203-23049-9du1mt/spec.rb:44 # PrivacyFilter does not filter invalid emails
rspec /tmp/d20130203-23049-9du1mt/spec.rb:59 # PrivacyFilter allows email hostname to be preserved
rspec /tmp/d20130203-23049-9du1mt/spec.rb:64 # PrivacyFilter allows email usernames to be partially preserved
rspec /tmp/d20130203-23049-9du1mt/spec.rb:68 # PrivacyFilter filters whole email usernames if too short
rspec /tmp/d20130203-23049-9du1mt/spec.rb:72 # PrivacyFilter does not brake with unicode
rspec /tmp/d20130203-23049-9du1mt/spec.rb:76 # PrivacyFilter filters more complex phone numbers
rspec /tmp/d20130203-23049-9du1mt/spec.rb:100 # PrivacyFilter preserves whitespace around phones
rspec /tmp/d20130203-23049-9du1mt/spec.rb:104 # PrivacyFilter filters more than one phone or email
rspec /tmp/d20130203-23049-9du1mt/spec.rb:122 # PrivacyFilter allows country code to be preserved for internationally-formatted phone numbers
rspec /tmp/d20130203-23049-9du1mt/spec.rb:136 # PrivacyFilter separates preserved country code from filtered phone with a space
rspec /tmp/d20130203-23049-9du1mt/spec.rb:160 # Validations can validate more complex emails
rspec /tmp/d20130203-23049-9du1mt/spec.rb:175 # Validations does not break on emails in multiline strings
rspec /tmp/d20130203-23049-9du1mt/spec.rb:184 # Validations can validate more complex phone numbers
rspec /tmp/d20130203-23049-9du1mt/spec.rb:214 # Validations does not break on phones in multiline strings
rspec /tmp/d20130203-23049-9du1mt/spec.rb:218 # Validations validates hostnames
rspec /tmp/d20130203-23049-9du1mt/spec.rb:232 # Validations handles multiline strings in hostname validation properly
rspec /tmp/d20130203-23049-9du1mt/spec.rb:237 # Validations validates IP addresses
rspec /tmp/d20130203-23049-9du1mt/spec.rb:244 # Validations handles multiline strings in IP validation properly
rspec /tmp/d20130203-23049-9du1mt/spec.rb:250 # Validations validates numbers
rspec /tmp/d20130203-23049-9du1mt/spec.rb:257 # Validations validates more complex numbers
rspec /tmp/d20130203-23049-9du1mt/spec.rb:273 # Validations handles multiline strings in numbers validation properly
rspec /tmp/d20130203-23049-9du1mt/spec.rb:278 # Validations validates integers
rspec /tmp/d20130203-23049-9du1mt/spec.rb:283 # Validations validates more complex integers
rspec /tmp/d20130203-23049-9du1mt/spec.rb:294 # Validations handles multiline strings in integer validation properly
rspec /tmp/d20130203-23049-9du1mt/spec.rb:299 # Validations validates dates
rspec /tmp/d20130203-23049-9du1mt/spec.rb:306 # Validations allows zero years in date validation
rspec /tmp/d20130203-23049-9du1mt/spec.rb:310 # Validations allows huge years in date validation
rspec /tmp/d20130203-23049-9du1mt/spec.rb:314 # Validations does not allow zero months or days in dates
rspec /tmp/d20130203-23049-9du1mt/spec.rb:320 # Validations does not allow invalid months or days in dates
rspec /tmp/d20130203-23049-9du1mt/spec.rb:326 # Validations handles newlines in date validation
rspec /tmp/d20130203-23049-9du1mt/spec.rb:331 # Validations validates times
rspec /tmp/d20130203-23049-9du1mt/spec.rb:339 # Validations does not allow invalid hours, minutes or seconds
rspec /tmp/d20130203-23049-9du1mt/spec.rb:347 # Validations validates datetime values
rspec /tmp/d20130203-23049-9du1mt/spec.rb:359 # Validations handles newlines in time and datetime validation

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

Тодор обнови решението на 28.11.2012 16:00 (преди над 11 години)

+class PrivacyFilter
+ def initialize(text)
+ @text = text
+ end
+
+ def filtered
+ @text
+ end
+end
+
+class Validations
+ def self.email?(value)
+ /^(\w[\w\_\+\.-]*)@(\w[\w-]*\w\.)+(\D\D\D?)(\.\D\D)?$/ === value
+ end
+
+ def self.hostname?(value)
+ /^(\w[\w-]*\w\.)+(\D\D\D?)(\.\D\D)?$/ === value
+ end
+
+ def self.phone?(value)
+ /^((0)|(((00)|(\+))(\d\d?\d?)))(([\s\-\(\)]?\d[\s\-\(\)]?)*)$/ === value
+ end
+
+end