docbrown/spec/requests/github_repos_spec.rb
Mac Siri d74483dd5f Fix GitHub Repo feature (#78)
* Create MarkdownFixer spec

* Fix lint

* Fix lint

* Update GithubRepo::find_or_create

* Fix failing specs

* Fix failing specs

* Add error handling for GithubReposController

* Improve GithubRepo::update_to_latest
2018-03-15 11:36:22 -04:00

44 lines
1.3 KiB
Ruby

require "rails_helper"
RSpec.describe "GithubRepos", type: :request do
let(:user) { create(:user) }
let(:repo) { build(:github_repo, user_id: user.id) }
let(:my_ocktokit_client) { instance_double(Octokit::Client) }
let(:stubbed_github_repos) do
[OpenStruct.new(repo.attributes.merge(id: repo.github_id_code, html_url: Faker::Internet.url))]
end
before do
allow(Octokit::Client).to receive(:new).and_return(my_ocktokit_client)
allow(my_ocktokit_client).to receive(:repositories) { stubbed_github_repos }
sign_in user
end
describe "POST /github_repos" do
it "returns a 302" do
post "/github_repos", params: { github_repo: { github_id_code: repo.github_id_code } }
expect(response).to have_http_status(302)
end
it "creates a new GithubRepo object" do
post "/github_repos", params: { github_repo: { github_id_code: repo.github_id_code } }
expect(GithubRepo.count).to eq(1)
end
end
describe "PUT /github_repos/:id" do
before do
repo.save
end
it "returns a 302" do
put "/github_repos/#{repo.id}"
expect(response).to have_http_status(302)
end
it "unfeatures the requested GithubRepo" do
put "/github_repos/#{repo.id}"
expect(GithubRepo.first.featured).to eq(false)
end
end
end