kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
4.7 KiB
74 lines
4.7 KiB
#-- copyright
|
|
# OpenProject is a project management system.
|
|
#
|
|
# Copyright (C) 2012-2013 the OpenProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
require 'spec_helper'
|
|
|
|
describe RepositoriesController do
|
|
|
|
#TODO: the repositories routes and routing specs should be fixed -> in Rails3, they dont work as before in Rails2
|
|
#e.g. wildcard matchers are not passed as an array anymore
|
|
|
|
describe "show" do
|
|
it{ get("/projects/testproject/repository").should route_to( :controller => 'repositories', :action => 'show', :id => 'testproject' )}
|
|
end
|
|
|
|
describe "edit" do
|
|
it { get("/projects/testproject/repository/edit").should route_to( :controller => 'repositories', :action => 'edit', :id => 'testproject')}
|
|
it { post("/projects/testproject/repository/edit").should route_to( :controller => 'repositories', :action => 'edit', :id => 'testproject')}
|
|
end
|
|
|
|
describe "revisions" do
|
|
it { get("/projects/testproject/repository/revisions").should route_to( :controller => 'repositories', :action => 'revisions', :id => 'testproject')}
|
|
it { get("/projects/testproject/repository/revisions.atom").should route_to( :controller => 'repositories', :action => 'revisions', :id => 'testproject', :format => 'atom')}
|
|
it { get("/projects/testproject/repository/revisions/2457").should route_to( :controller => 'repositories', :action => 'revision', :id => 'testproject', :rev => '2457')}
|
|
end
|
|
|
|
describe "diff" do
|
|
pending describe "unknown diff roots" do
|
|
it { get("/projects/testproject/repository/revisions/2457/diff").should route_to( :controller => 'repositories', :action => 'diff', :id => 'testproject', :rev => '2457')}
|
|
it { get("/projects/testproject/repository/revisions/2457/diff.diff").should route_to( :controller => 'repositories', :action => 'diff', :id => 'testproject', :rev => '2457', :format => 'diff')}
|
|
end
|
|
it { get("/projects/testproject/repository/diff").should route_to( :controller => 'repositories', :action => 'diff', :id => 'testproject')}
|
|
it { get("/projects/testproject/repository/diff/path/to/file.c").should route_to( :controller => 'repositories', :action => 'diff', :id => 'testproject', :path => "path/to/file", :format => 'c')}
|
|
it { get("/projects/testproject/repository/revisions/2/diff/path/to/file.c").should route_to( :controller => 'repositories', :action => 'diff', :id => 'testproject', :path => "path/to/file.c", :rev => '2')}
|
|
end
|
|
|
|
describe "browse" do
|
|
it { get("/projects/testproject/repository/browse/path/to/file.c").should route_to( :controller => 'repositories', :action => 'browse', :id => 'testproject', :path => "path/to/file", :format => 'c')}
|
|
end
|
|
|
|
describe "entry" do
|
|
it { get("/projects/testproject/repository/entry/path/to/file.c").should route_to( :controller => 'repositories', :action => 'entry', :id => 'testproject', :path => "path/to/file", :format => 'c')}
|
|
it { get("/projects/testproject/repository/revisions/2/entry/path/to/file.c").should route_to( :controller => 'repositories', :action => 'entry', :id => 'testproject', :path => "path/to/file", :rev => '2', :format => 'c')}
|
|
it { get("/projects/testproject/repository/raw/path/to/file.c").should route_to( :controller => 'repositories', :action => 'entry', :id => 'testproject', :path => "path/to/file", :format => 'c', :kind => 'raw')}
|
|
it { get("/projects/testproject/repository/revisions/2/raw/path/to/file.c").should route_to( :controller => 'repositories', :action => 'entry', :id => 'testproject', :path => "path/to/file", :rev => '2', :format => 'c', :kind => 'raw')}
|
|
end
|
|
|
|
describe "annotate" do
|
|
it { get("/projects/testproject/repository/annotate/path/to/file.c").should route_to( :controller => 'repositories', :action => 'annotate', :id => 'testproject', :path => "path/to/file", :format => 'c')}
|
|
end
|
|
|
|
describe "changes" do
|
|
it { get("/projects/testproject/repository/changes/path/to/file.c").should route_to( :controller => 'repositories', :action => 'changes', :id => 'testproject', :path => "path/to/file", :format => 'c')}
|
|
end
|
|
|
|
describe "stats" do
|
|
it { get("/projects/testproject/repository/statistics").should route_to( :controller => 'repositories', :action => 'stats', :id => 'testproject')}
|
|
end
|
|
|
|
describe "committers" do
|
|
it { get("/projects/testproject/repository/committers").should route_to( :controller => 'repositories', :action => 'committers', :id => 'testproject')}
|
|
end
|
|
|
|
describe "graph" do
|
|
it { get("/projects/testproject/repository/graph").should route_to( :controller => 'repositories', :action => 'graph', :id => 'testproject')}
|
|
end
|
|
end
|
|
|