Skip to content

Commit 0f81f1b

Browse files
author
sandramu26
committed
Improve tests unless post_location_helper.rb
1 parent 7983de8 commit 0f81f1b

18 files changed

+87
-61
lines changed

.env

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ TWITTER_CONSUMER_SECRET='yDwjEx8b16CJ1JZYIze2N1HnfvNkLHJX1HVsy1m4PUsZMCDo5J'
1515
TWITTER_ACCESS_TOKEN='3302775980-goahLve7pwL5RucNtb2UR3kVHj7F66LhjqLMCJf'
1616
TWITTER_ACCESS_SECRET='jjKsUZFECizNnjZnuG3pMmXrdp1nBY449y3HhXVnrGsuy'
1717
MAIL_NOTIFICATION='[email protected]'
18-
CLIENT_KEY= ''
19-
ACCESS_TOKEN= ''
18+
CLIENT_KEY= 'ZEGYIdaRKJ4eFpqjOrX6dw(('
19+
ACCESS_TOKEN= 'h5Q5iW2AAJSr0n4bB7(shA))'

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ group :test do
6565
# gem 'webmock'
6666
gem 'codeclimate-test-reporter', require: false
6767
gem 'webmock', '~> 1.14'
68+
gem 'database_cleaner'
6869
end
6970

7071
# api

Gemfile.lock

+10-9
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ GEM
3535
tzinfo (~> 0.3.37)
3636
addressable (2.3.8)
3737
arel (4.0.2)
38-
autoprefixer-rails (5.2.1.1)
38+
autoprefixer-rails (5.2.1.2)
3939
execjs
4040
json
4141
bcrypt (3.1.10)
@@ -52,7 +52,7 @@ GEM
5252
rack (>= 1.0.0)
5353
rack-test (>= 0.5.4)
5454
xpath (~> 2.0)
55-
celluloid (0.16.0)
55+
celluloid (0.16.1)
5656
timers (~> 4.0.0)
5757
chronic (0.10.2)
5858
clearance (1.10.1)
@@ -73,6 +73,7 @@ GEM
7373
crack (0.4.2)
7474
safe_yaml (~> 1.0.0)
7575
daemons (1.2.3)
76+
database_cleaner (1.4.1)
7677
diff-lcs (1.2.5)
7778
docile (1.1.5)
7879
dotenv (2.0.2)
@@ -84,7 +85,7 @@ GEM
8485
equalizer (0.0.11)
8586
erubis (2.7.0)
8687
eventmachine (1.0.8)
87-
execjs (2.5.2)
88+
execjs (2.6.0)
8889
factory_girl (4.4.0)
8990
activesupport (>= 3.0.0)
9091
factory_girl_rails (4.4.1)
@@ -124,13 +125,12 @@ GEM
124125
jquery-rails (3.1.3)
125126
railties (>= 3.0, < 5.0)
126127
thor (>= 0.14, < 2.0)
127-
json (1.8.1)
128-
jwt (0.1.8)
129-
multi_json (>= 1.5)
128+
json (1.8.3)
129+
jwt (1.5.1)
130130
launchy (2.4.3)
131131
addressable (~> 2.3)
132-
libv8 (3.16.14.7)
133-
listen (3.0.0)
132+
libv8 (3.16.14.11)
133+
listen (3.0.3)
134134
rb-fsevent (>= 0.9.3)
135135
rb-inotify (>= 0.9)
136136
lumberjack (1.0.9)
@@ -147,7 +147,7 @@ GEM
147147
multipart-post (2.0.0)
148148
naught (1.0.0)
149149
nenv (0.2.0)
150-
newrelic_rpm (3.12.1.298)
150+
newrelic_rpm (3.13.0.299)
151151
nokogiri (1.6.6.2)
152152
mini_portile (~> 0.6.0)
153153
notiffany (0.0.7)
@@ -320,6 +320,7 @@ DEPENDENCIES
320320
clearance
321321
codeclimate-test-reporter
322322
coffee-rails (~> 4.0.0)
323+
database_cleaner
323324
dotenv-rails
324325
factory_girl_rails (~> 4.4.0)
325326
guard

app/helpers/post_location_helper.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def link_to_post(post)
88
end
99

1010
def show_votes(post)
11-
if post.type == "InternalPost"
11+
if post.type == "InternalPost"
1212
if post.has_voted?(current_user)
1313
("<span class='fa fa-chevron-up'></span><br/>" +
1414
"<span> #{post.votes.count} </span><br/>" +

app/mailers/comment_mailer.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ def send_notification_email(comment_id)
44
@user = User.find @comment.parent.user_id
55
@parent_id = @comment.parent_id
66
@post = InternalPost.find @parent_id
7-
@url = "https://www.rubygamedev.com/internal_posts/#{@parent_id}"
7+
@url = "https://www.rubygamedev.com/posts/#{@parent_id}"
88

99
attachments.inline['reply-button.png'] = File.read("#{Rails.root}/app/assets/images/reply-button.png")
1010
attachments.inline['banner-header.png'] = File.read("#{Rails.root}/app/assets/images/banner-header.png")

app/models/external_post.rb

-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
class ExternalPost < Post
22
validates :external_id, uniqueness: true
3-
# after_create :question_tag
43

54
def username
65
self.user_display_name
@@ -10,7 +9,4 @@ def number_of_comments
109
0
1110
end
1211

13-
# def question_tag
14-
# tags.create(title: "question")
15-
# end
1612
end

app/models/internal_post.rb

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
class InternalPost < Post
22
belongs_to :user
3-
validates :user, presence: true
3+
validates :user, :title, :body_markdown, presence: true
44
has_many :comments, as: :parent
55

6-
validates_presence_of :user, :title, :body_markdown
7-
86
before_save do
97
parser = Redcarpet::Markdown.new(Redcarpet::Render::HTML, autolink: true)
108
self.body_html = parser.render(body_markdown)

spec/factories/external_post.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FactoryGirl.define do
22
factory :external_post do
3-
sequence(:external_id) { |n| "00000#{n}" }
3+
sequence(:external_id) { |n| "1#{n}" }
44
title "Example Discussion"
55
body_markdown "Example body. So **strong**."
66
user_display_name "Mister Tes"

spec/factories/internal_post.rb

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
FactoryGirl.define do
22
factory :internal_post do
33
user
4-
tags { [FactoryGirl.create(:tag)] }
54
title "Example Discussion"
65
body_markdown "Example body. So **strong**."
76
end

spec/factories/post.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FactoryGirl.define do
22
factory :post do
3-
user
3+
tags { [FactoryGirl.create(:tag)] }
44
title 'Example Discussion'
55
body_markdown 'Example body. So **strong**.'
66
end

spec/factories/tag.rb

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
FactoryGirl.define do
22
factory :tag do
33
title "example"
4-
user
54
end
65
end

spec/fixtures/vcr_cassettes/questions.yml

+25-25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spec/helpers/post_location_helper_spec.rb

+9-8
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,17 @@
1414
end
1515
end
1616

17-
describe "#show_tags" do
18-
let(:external_post) { FactoryGirl.create(:external_post) }
17+
describe "#show_votes" do
1918
let(:internal_post) { FactoryGirl.create(:internal_post) }
2019

21-
it "returns questions tags" do
22-
expect(helper.show_tags(external_post)).to match("question")
23-
end
20+
# it "returns 1 if current user has voted" do
21+
# expect(helper.show_votes(internal_post)
22+
# ).to match();
23+
# end
2424

25-
it "returns ruby tag" do
26-
expect(helper.show_tags(internal_post)).to match("example")
27-
end
25+
# it "returns 1 if current user has voted" do
26+
# expect(helper.show_votes(internal_post)
27+
# ).to match();
28+
# end
2829
end
2930
end

spec/mailers/comment_mailer_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
it "assigns @confirmation_url" do
2525
expect(mail.body.encoded).to match(
26-
"https://www.rubygamedev.com/internal_posts/#{comment.parent_id}")
26+
"https://www.rubygamedev.com/posts/#{comment.parent_id}")
2727
end
2828

2929
it "render the body email" do

spec/models/internal_post_spec.rb

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55
it { should have_many :comments }
66
it { should validate_presence_of :user }
77
it { should validate_presence_of :title }
8+
it { should validate_presence_of :body_markdown }
89

910
describe "#notify_twitter" do
1011
subject { FactoryGirl.build(:internal_post) }
11-
12+
1213
it "posts to Twitter after create" do
1314
expect(subject).to receive(:notify_twitter)
1415
subject.save!
@@ -114,7 +115,7 @@ def post_tag_titles
114115

115116
all_tag_titles = Tag.all.map(&:title)
116117
expect(all_tag_titles).to match_array [
117-
"example",
118+
"question",
118119
"ruby",
119120
"rails",
120121
"great",

spec/models/post_spec.rb

+14
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,18 @@
33
describe Post do
44
it { should validate_presence_of :title }
55
it { should have_and_belong_to_many :tags }
6+
7+
let(:post) { FactoryGirl.create :external_post }
8+
let(:post2) { FactoryGirl.create :external_post }
9+
10+
it "checks if a tag title question already exists in other posts" do
11+
12+
post.question_tag
13+
post2.question_tag
14+
15+
all_tag_titles = Tag.all.map(&:title)
16+
expect(all_tag_titles).to match_array ["question"]
17+
18+
end
619
end
20+

spec/models/tag_spec.rb

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
require "rails_helper"
22

33
describe Tag do
4-
it { should belong_to :user }
54
it { should have_and_belong_to_many :posts }
65

76
# TODO

spec/spec_helper.rb

+17
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,23 @@
1414
config.mock_with :rspec do |mocks|
1515
mocks.verify_partial_doubles = true
1616
end
17+
18+
config.before(:suite) do
19+
DatabaseCleaner.clean_with(:truncation)
20+
end
21+
22+
config.before(:each) do
23+
DatabaseCleaner.strategy = :transaction
24+
end
25+
26+
config.before(:each) do
27+
DatabaseCleaner.start
28+
end
29+
30+
config.after(:each) do
31+
DatabaseCleaner.clean
32+
end
33+
1734
end
1835

1936
VCR.configure do |c|

0 commit comments

Comments
 (0)