2016-03-05 17:07:32 -05:00
|
|
|
require "rails_helper"
|
2013-11-16 18:39:08 -05:00
|
|
|
|
2016-02-15 22:32:40 -05:00
|
|
|
describe "Articles management", type: :request, order: :defined do
|
2016-03-05 17:07:32 -05:00
|
|
|
let(:valid_params) { { article: { title: "Doh", content: FFaker::Lorem.sentence } } }
|
2013-11-16 18:39:08 -05:00
|
|
|
|
|
|
|
context "versioning disabled" do
|
2014-10-09 15:04:17 -04:00
|
|
|
specify { expect(PaperTrail).not_to be_enabled }
|
2013-11-16 18:39:08 -05:00
|
|
|
|
2017-04-01 01:50:13 -04:00
|
|
|
it "does not create a version" do
|
2014-10-09 15:04:17 -04:00
|
|
|
expect(PaperTrail).to be_enabled_for_controller
|
2016-02-15 18:27:57 -05:00
|
|
|
expect {
|
|
|
|
post articles_path, params_wrapper(valid_params)
|
|
|
|
}.to_not change(PaperTrail::Version, :count)
|
2013-11-16 18:39:08 -05:00
|
|
|
end
|
|
|
|
|
2017-04-01 01:50:13 -04:00
|
|
|
it "does not leak the state of the `PaperTrail.enabled_for_controller?` into the next test" do
|
2014-10-09 15:04:17 -04:00
|
|
|
expect(PaperTrail).to be_enabled_for_controller
|
2013-11-16 18:39:08 -05:00
|
|
|
end
|
|
|
|
end
|
2014-03-20 16:04:53 -04:00
|
|
|
|
|
|
|
with_versioning do
|
|
|
|
let(:article) { Article.last }
|
|
|
|
|
|
|
|
context "`current_user` method returns a `String`" do
|
2017-04-01 01:50:13 -04:00
|
|
|
it "sets that value as the `whodunnit`" do
|
2016-02-15 18:27:57 -05:00
|
|
|
expect {
|
|
|
|
post articles_path, params_wrapper(valid_params)
|
|
|
|
}.to change(PaperTrail::Version, :count).by(1)
|
2016-03-05 17:07:32 -05:00
|
|
|
expect(article.title).to eq("Doh")
|
|
|
|
expect(article.versions.last.whodunnit).to eq("foobar")
|
2014-03-20 16:04:53 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-11-16 18:39:08 -05:00
|
|
|
end
|