Skip to content
This repository was archived by the owner on Jan 3, 2024. It is now read-only.

Commit 95ec6d1

Browse files
committed
added regexp for validating postgres arrays and specs for the regexp
1 parent 28f91b8 commit 95ec6d1

File tree

8 files changed

+80
-3
lines changed

8 files changed

+80
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.DS_Store
22
*.gem
33
.bundle
4+
Gemfile.lock

.rspec

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--color
2+
--format progress

Gemfile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
source :rubygems
2+
3+
gemspec

Rakefile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/usr/bin/env rake
2+
begin
3+
require 'bundler/setup'
4+
rescue LoadError
5+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
6+
end
7+
8+
Bundler::GemHelper.install_tasks
9+
10+
require 'rspec/core/rake_task'
11+
RSpec::Core::RakeTask.new
12+
13+
task :default => :spec

activerecord-postgres-array.gemspec

+3
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,8 @@ Gem::Specification.new do |s|
1616
s.require_paths = ["lib"]
1717
s.rubygems_version = %q{1.3.7}
1818
s.summary = s.description
19+
20+
s.add_development_dependency 'rake'
21+
s.add_development_dependency 'rspec', '~> 2.0'
1922
end
2023

lib/activerecord-postgres-array/string.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
class String
2-
32
def to_postgres_array
43
self
54
end
@@ -9,8 +8,9 @@ def to_postgres_array
98
# * A string like '{10000, 10000, 10000, 10000}'
109
# * TODO A multi dimensional array string like '{{"meeting", "lunch"}, {"training", "presentation"}}'
1110
def valid_postgres_array?
12-
# TODO validate formats above
13-
true
11+
quoted_string_regexp = /"[^"\\]*(?:\\.[^"\\]*)*"|'[^'\\]*(?:\\.[^'\\]*)*'/
12+
number_regexp = /[-+]?[0-9]*\.?[0-9]+/
13+
!!match(/^\s*(\{\s*(#{number_regexp}|#{quoted_string_regexp})(\s*\,\s*(#{number_regexp}|#{quoted_string_regexp}))*\})?\s*$/)
1414
end
1515

1616
# Creates an array from a postgres array string that postgresql spits out.

spec/spec_helper.rb

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
RSpec.configure do |config|
2+
config.treat_symbols_as_metadata_keys_with_true_values = true
3+
config.run_all_when_everything_filtered = true
4+
config.filter_run :focus
5+
end

spec/string_ext_spec.rb

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
require 'spec_helper'
2+
require 'activerecord-postgres-array/string'
3+
4+
describe "String" do
5+
describe "#valid_postgres_array?" do
6+
it 'returns true for an empty string' do
7+
"".should be_valid_postgres_array
8+
end
9+
10+
it 'returns true for a string consisting only of whitespace' do
11+
" ".should be_valid_postgres_array
12+
end
13+
14+
it 'returns true for a valid postgres integer array' do
15+
"{10000, 10000, 10000, 10000}".should be_valid_postgres_array
16+
end
17+
18+
it 'returns true for a valid postgres float array' do
19+
"{10000.2, .5, 10000, 10000.9}".should be_valid_postgres_array
20+
end
21+
22+
it 'returns true for a valid postgres numerical array with irregular whitespace' do
23+
"{ 10000, 10000 , 10000,10000}".should be_valid_postgres_array
24+
end
25+
26+
it 'returns false for an array with invalid commas' do
27+
"{213,}".should_not be_valid_postgres_array
28+
end
29+
30+
it 'returns false for an array without enclosing curly brackets' do
31+
"213, 1234".should_not be_valid_postgres_array
32+
end
33+
34+
it 'returns true for a valid postgres string array' do
35+
'{"ruby", "on", "rails"}'.should be_valid_postgres_array
36+
end
37+
38+
it 'returns true for a valid postgres string array with single quotes' do
39+
"{'ruby', 'on', 'rails'}".should be_valid_postgres_array
40+
end
41+
42+
it 'returns false for string array without quotes' do
43+
"{ruby, on, rails}".should_not be_valid_postgres_array
44+
end
45+
46+
it 'returns false for concatenated strings' do
47+
'{"ruby""on""rails"}'.should_not be_valid_postgres_array
48+
end
49+
end
50+
end

0 commit comments

Comments
 (0)