enju_biblio 0.1.0.pre42 → 0.1.0.pre43
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/creates_controller.rb +11 -11
- data/app/controllers/items_controller.rb +3 -3
- data/app/controllers/manifestations_controller.rb +14 -14
- data/app/controllers/owns_controller.rb +10 -10
- data/app/controllers/patron_import_files_controller.rb +34 -34
- data/app/controllers/patron_import_results_controller.rb +5 -5
- data/app/controllers/patron_relationship_types_controller.rb +3 -3
- data/app/controllers/patron_relationships_controller.rb +7 -7
- data/app/controllers/patron_types_controller.rb +3 -3
- data/app/controllers/patrons_controller.rb +61 -61
- data/app/controllers/picture_files_controller.rb +4 -4
- data/app/controllers/produces_controller.rb +11 -11
- data/app/controllers/realizes_controller.rb +11 -11
- data/app/helpers/{patrons_helper.rb → agents_helper.rb} +5 -5
- data/app/models/{patron.rb → agent.rb} +36 -36
- data/app/models/{patron_import_file.rb → agent_import_file.rb} +77 -77
- data/app/models/agent_import_result.rb +26 -0
- data/app/models/{patron_relationship.rb → agent_relationship.rb} +7 -7
- data/app/models/{patron_relationship_type.rb → agent_relationship_type.rb} +4 -4
- data/app/models/{patron_sweeper.rb → agent_sweeper.rb} +6 -6
- data/app/models/{patron_type.rb → agent_type.rb} +4 -4
- data/app/models/country.rb +1 -1
- data/app/models/create.rb +7 -7
- data/app/models/donate.rb +5 -5
- data/app/models/enju_biblio/ability.rb +24 -24
- data/app/models/item.rb +5 -5
- data/app/models/item_sweeper.rb +2 -2
- data/app/models/manifestation.rb +24 -20
- data/app/models/own.rb +7 -7
- data/app/models/page_sweeper.rb +4 -4
- data/app/models/picture_file.rb +1 -1
- data/app/models/produce.rb +7 -7
- data/app/models/realize.rb +7 -7
- data/app/models/resource_import_file.rb +19 -19
- data/app/views/{patron_import_files → agent_import_files}/edit.html.erb +6 -6
- data/app/views/agent_import_files/index.html.erb +40 -0
- data/app/views/{patron_import_files → agent_import_files}/new.html.erb +3 -3
- data/app/views/agent_import_files/show.html.erb +69 -0
- data/app/views/agent_import_results/index.csv.erb +3 -0
- data/app/views/agent_import_results/index.html.erb +52 -0
- data/app/views/agent_import_results/show.html.erb +38 -0
- data/app/views/{patron_relationship_types → agent_relationship_types}/_form.html.erb +1 -1
- data/app/views/{patron_relationship_types → agent_relationship_types}/edit.html.erb +3 -3
- data/app/views/agent_relationship_types/index.html.erb +43 -0
- data/app/views/{patron_relationship_types → agent_relationship_types}/new.html.erb +2 -2
- data/app/views/agent_relationship_types/show.html.erb +29 -0
- data/app/views/{patron_relationships → agent_relationships}/_form.html.erb +7 -7
- data/app/views/{patron_relationships → agent_relationships}/edit.html.erb +3 -3
- data/app/views/agent_relationships/index.html.erb +34 -0
- data/app/views/{patron_relationships → agent_relationships}/new.html.erb +2 -2
- data/app/views/agent_relationships/show.html.erb +24 -0
- data/app/views/{patron_types → agent_types}/_form.html.erb +1 -1
- data/app/views/{patron_types → agent_types}/edit.html.erb +3 -3
- data/app/views/agent_types/index.html.erb +43 -0
- data/app/views/{patron_types → agent_types}/new.html.erb +2 -2
- data/app/views/agent_types/show.html.erb +29 -0
- data/app/views/{patrons → agents}/_expression_list.html.erb +3 -3
- data/app/views/{patrons → agents}/_form.html.erb +9 -9
- data/app/views/{patrons → agents}/_form_family_name_first.html.erb +0 -0
- data/app/views/{patrons → agents}/_form_family_name_last.html.erb +0 -0
- data/app/views/{patrons → agents}/_history_list.html.erb +2 -2
- data/app/views/{patrons → agents}/_index.html.erb +9 -9
- data/app/views/{patrons → agents}/_index_expression.html.erb +15 -15
- data/app/views/{patrons → agents}/_index_manifestation.html.erb +16 -16
- data/app/views/agents/_index_patron.html.erb +71 -0
- data/app/views/agents/_index_patron_merge_list.html.erb +53 -0
- data/app/views/{patrons → agents}/_index_work.html.erb +17 -17
- data/app/views/{patrons → agents}/_manifestation_list.html.erb +3 -3
- data/app/views/agents/_patron.html.erb +13 -0
- data/app/views/agents/_patron_list.html.erb +18 -0
- data/app/views/{patrons → agents}/_work_list.html.erb +1 -1
- data/app/views/agents/edit.html.erb +16 -0
- data/app/views/agents/index.atom.builder +10 -0
- data/app/views/{patrons → agents}/index.html.erb +4 -4
- data/app/views/{patrons → agents}/index.mobile.erb +5 -5
- data/app/views/{patrons → agents}/index.rss.builder +11 -11
- data/app/views/{patrons → agents}/new.html.erb +2 -2
- data/app/views/agents/show.html.erb +152 -0
- data/app/views/{patrons → agents}/show.js.erb +0 -0
- data/app/views/agents/show.mobile.erb +69 -0
- data/app/views/creates/_form.html.erb +5 -5
- data/app/views/creates/_index.html.erb +2 -2
- data/app/views/creates/_index_patron.html.erb +6 -6
- data/app/views/creates/_index_work.html.erb +2 -2
- data/app/views/creates/index.html.erb +2 -2
- data/app/views/creates/new.html.erb +3 -3
- data/app/views/creates/show.html.erb +4 -4
- data/app/views/donates/edit.html.erb +2 -2
- data/app/views/donates/index.html.erb +2 -2
- data/app/views/donates/new.html.erb +2 -2
- data/app/views/donates/show.html.erb +2 -2
- data/app/views/items/index.html.erb +1 -1
- data/app/views/languages/index.html.erb +1 -1
- data/app/views/layouts/patrons.html.erb +2 -2
- data/app/views/manifestations/_index_form_contributor.html.erb +1 -1
- data/app/views/manifestations/_index_form_creator.html.erb +1 -1
- data/app/views/manifestations/_index_form_publisher.html.erb +1 -1
- data/app/views/manifestations/_manifestation_list.html.erb +6 -6
- data/app/views/manifestations/_show.mods.builder +4 -4
- data/app/views/manifestations/_show.rdf.builder +4 -4
- data/app/views/manifestations/_show_creators.html.erb +4 -4
- data/app/views/manifestations/_show_creators.mobile.erb +4 -4
- data/app/views/manifestations/_title.html.erb +3 -3
- data/app/views/manifestations/_title.mobile.erb +3 -3
- data/app/views/manifestations/edit.html.erb +2 -2
- data/app/views/manifestations/index.atom.builder +2 -2
- data/app/views/manifestations/index.html.erb +3 -3
- data/app/views/manifestations/index.opds.builder +2 -2
- data/app/views/manifestations/index.sru.builder +6 -6
- data/app/views/manifestations/new.html.erb +2 -2
- data/app/views/notifier/manifestation_info.en.text.erb +1 -1
- data/app/views/notifier/manifestation_info.ja.text.erb +1 -1
- data/app/views/owns/_form.html.erb +1 -1
- data/app/views/owns/index.html.erb +2 -2
- data/app/views/owns/show.html.erb +4 -4
- data/app/views/picture_files/_index.html.erb +1 -1
- data/app/views/picture_files/_index_patron.html.erb +2 -2
- data/app/views/picture_files/index.html.erb +2 -2
- data/app/views/picture_files/show.html.erb +2 -2
- data/app/views/produces/_form.html.erb +5 -5
- data/app/views/produces/_index.html.erb +2 -2
- data/app/views/produces/_index_manifestation.html.erb +3 -3
- data/app/views/produces/_index_patron.html.erb +3 -3
- data/app/views/produces/index.html.erb +2 -2
- data/app/views/produces/new.html.erb +3 -3
- data/app/views/produces/show.html.erb +4 -4
- data/app/views/realizes/_form.html.erb +5 -5
- data/app/views/realizes/_index.html.erb +2 -2
- data/app/views/realizes/_index_expression.html.erb +3 -3
- data/app/views/realizes/_index_patron.html.erb +3 -3
- data/app/views/realizes/index.html.erb +2 -2
- data/app/views/realizes/new.html.erb +3 -3
- data/app/views/realizes/show.html.erb +4 -4
- data/app/views/resource_import_results/show.html.erb +1 -1
- data/config/routes.rb +16 -16
- data/db/migrate/{001_create_patrons.rb → 001_create_agents.rb} +8 -8
- data/db/migrate/012_create_owns.rb +2 -2
- data/db/migrate/015_create_creates.rb +2 -2
- data/db/migrate/047_create_produces.rb +2 -2
- data/db/migrate/125_create_donates.rb +2 -2
- data/db/migrate/20080830154109_create_realizes.rb +2 -2
- data/db/migrate/{20080905191442_create_patron_types.rb → 20080905191442_create_agent_types.rb} +2 -2
- data/db/migrate/20081028083142_create_agent_import_files.rb +22 -0
- data/db/migrate/{20090812151902_create_patron_relationship_types.rb → 20090812151902_create_agent_relationship_types.rb} +2 -2
- data/db/migrate/20091012101112_add_dcndl_schema.rb +2 -2
- data/db/migrate/20100606073747_create_agent_relationships.rb +13 -0
- data/db/migrate/20100814091104_add_position_to_agent_relationship.rb +11 -0
- data/db/migrate/20100925074559_create_agent_import_results.rb +12 -0
- data/db/migrate/20110301121550_add_birth_date_and_death_date_to_agent.rb +11 -0
- data/db/migrate/20120413161403_add_fingerprint_to_agent_import_file.rb +5 -0
- data/db/migrate/20120413170720_add_error_message_to_agent_import_file.rb +5 -0
- data/db/migrate/20120511072422_add_agent_identifier_to_agent.rb +6 -0
- data/db/migrate/20120602141129_add_edit_mode_to_agent_import_file.rb +5 -0
- data/lib/enju_biblio/biblio_helper.rb +8 -8
- data/lib/enju_biblio/version.rb +1 -1
- data/lib/enju_biblio.rb +3 -3
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/patron_relationship_types.yml +3 -3
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/patron_types.yml +2 -2
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/patrons.yml +4 -4
- data/spec/controllers/agent_import_files_controller_spec.rb +321 -0
- data/spec/controllers/{patron_import_results_controller_spec.rb → agent_import_results_controller_spec.rb} +17 -17
- data/spec/controllers/agent_relationship_types_controller_spec.rb +445 -0
- data/spec/controllers/agent_relationships_controller_spec.rb +446 -0
- data/spec/controllers/agent_types_controller_spec.rb +447 -0
- data/spec/controllers/agents_controller_spec.rb +644 -0
- data/spec/controllers/countries_controller_spec.rb +1 -1
- data/spec/controllers/items_controller_spec.rb +4 -4
- data/spec/controllers/manifestation_relationship_types_controller_spec.rb +1 -1
- data/spec/controllers/manifestations_controller_spec.rb +4 -4
- data/spec/controllers/owns_controller_spec.rb +2 -2
- data/spec/controllers/resource_import_files_controller_spec.rb +1 -1
- data/spec/dummy/app/helpers/application_helper.rb +5 -222
- data/spec/dummy/app/models/ability.rb +31 -31
- data/spec/dummy/app/models/{local_patron.rb → local_agent.rb} +1 -1
- data/spec/dummy/app/models/user.rb +3 -3
- data/spec/dummy/config/application.rb +0 -1
- data/spec/dummy/config/environments/test.rb +1 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/035_create_reserves.rb +1 -1
- data/spec/dummy/db/migrate/20090519203307_create_participates.rb +2 -2
- data/spec/dummy/db/schema.rb +132 -132
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/private/system/agent_import_files/agent_imports/000/000/004/original/agent_delete_file.tsv +8 -0
- data/spec/dummy/private/system/agent_import_files/agent_imports/000/000/004/original/agent_import_file_sample1.tsv +5 -0
- data/spec/dummy/private/system/agent_import_files/agent_imports/000/000/004/original/agent_import_file_sample2.tsv +8 -0
- data/spec/dummy/private/system/agent_import_files/agent_imports/000/000/004/original/agent_import_file_sample3.tsv +5 -0
- data/spec/dummy/private/system/agent_import_files/agent_imports/000/000/004/original/agent_update_file.tsv +3 -0
- data/spec/dummy/solr/data/test/index/segments.gen +0 -0
- data/spec/dummy/solr/data/test/index/segments_q76 +0 -0
- data/spec/factories/{patron.rb → agent.rb} +3 -3
- data/spec/factories/create.rb +1 -1
- data/spec/factories/donate.rb +1 -1
- data/spec/factories/own.rb +1 -1
- data/spec/factories/patron_relationship.rb +3 -3
- data/spec/factories/patron_relationship_type.rb +2 -2
- data/spec/factories/patron_type.rb +2 -2
- data/spec/factories/produce.rb +1 -1
- data/spec/factories/realize.rb +1 -1
- data/spec/fixtures/{patron_import_files.yml → agent_import_files.yml} +18 -18
- data/spec/fixtures/{patron_import_results.yml → agent_import_results.yml} +7 -7
- data/spec/fixtures/{patron_relationship_types.yml → agent_relationship_types.yml} +4 -4
- data/spec/fixtures/{patron_relationships.yml → agent_relationships.yml} +4 -4
- data/spec/fixtures/{patron_types.yml → agent_types.yml} +4 -4
- data/spec/fixtures/{patrons.yml → agents.yml} +47 -47
- data/spec/fixtures/creates.yml +8 -8
- data/spec/fixtures/donates.yml +4 -4
- data/spec/fixtures/owns.yml +3 -3
- data/spec/fixtures/picture_files.yml +1 -1
- data/spec/fixtures/produces.yml +20 -20
- data/spec/fixtures/realizes.yml +11 -11
- data/spec/fixtures/reserves.yml +1 -1
- data/spec/models/agent_import_file_spec.rb +96 -0
- data/spec/models/{patron_import_result_spec.rb → agent_import_result_spec.rb} +4 -4
- data/spec/models/{patron_relationship_spec.rb → agent_relationship_spec.rb} +3 -3
- data/spec/models/{patron_relationship_type_spec.rb → agent_relationship_type_spec.rb} +2 -2
- data/spec/models/{patron_spec.rb → agent_spec.rb} +16 -16
- data/spec/models/{patron_type_spec.rb → agent_type_spec.rb} +2 -2
- data/spec/models/create_spec.rb +1 -1
- data/spec/models/donate_spec.rb +1 -1
- data/spec/models/manifestation_spec.rb +1 -1
- data/spec/models/own_spec.rb +1 -1
- data/spec/models/produce_spec.rb +1 -1
- data/spec/models/realize_spec.rb +1 -1
- data/spec/models/resource_import_file_spec.rb +8 -8
- data/spec/requests/agents_spec.rb +9 -0
- data/spec/routing/agent_relationship_types_routing_spec.rb +35 -0
- data/spec/routing/agent_relationships_routing_spec.rb +35 -0
- data/spec/routing/agents_routing_spec.rb +35 -0
- data/spec/views/creates/edit.html.erb_spec.rb +1 -1
- data/spec/views/creates/index.html.erb_spec.rb +2 -2
- data/spec/views/creates/new.html.erb_spec.rb +1 -1
- data/spec/views/creates/show.html.erb_spec.rb +1 -1
- data/spec/views/owns/edit.html.erb_spec.rb +1 -1
- data/spec/views/owns/index.html.erb_spec.rb +2 -2
- data/spec/views/owns/new.html.erb_spec.rb +1 -1
- data/spec/views/owns/show.html.erb_spec.rb +1 -1
- data/spec/views/produces/edit.html.erb_spec.rb +2 -2
- data/spec/views/produces/index.html.erb_spec.rb +2 -2
- data/spec/views/produces/new.html.erb_spec.rb +2 -2
- data/spec/views/produces/show.html.erb_spec.rb +1 -1
- data/spec/views/realizes/edit.html.erb_spec.rb +2 -2
- data/spec/views/realizes/index.html.erb_spec.rb +2 -2
- data/spec/views/realizes/new.html.erb_spec.rb +2 -2
- data/spec/views/realizes/show.html.erb_spec.rb +1 -1
- metadata +131 -187
- data/app/models/patron_import_result.rb +0 -26
- data/app/views/patron_import_files/index.html.erb +0 -40
- data/app/views/patron_import_files/show.html.erb +0 -69
- data/app/views/patron_import_results/index.csv.erb +0 -3
- data/app/views/patron_import_results/index.html.erb +0 -52
- data/app/views/patron_import_results/show.html.erb +0 -38
- data/app/views/patron_relationship_types/index.html.erb +0 -43
- data/app/views/patron_relationship_types/show.html.erb +0 -29
- data/app/views/patron_relationships/index.html.erb +0 -34
- data/app/views/patron_relationships/show.html.erb +0 -24
- data/app/views/patron_types/index.html.erb +0 -43
- data/app/views/patron_types/show.html.erb +0 -29
- data/app/views/patrons/_index_patron.html.erb +0 -71
- data/app/views/patrons/_index_patron_merge_list.html.erb +0 -53
- data/app/views/patrons/_patron.html.erb +0 -13
- data/app/views/patrons/_patron_list.html.erb +0 -18
- data/app/views/patrons/edit.html.erb +0 -16
- data/app/views/patrons/index.atom.builder +0 -10
- data/app/views/patrons/show.html.erb +0 -152
- data/app/views/patrons/show.mobile.erb +0 -69
- data/db/migrate/20081028083142_create_patron_import_files.rb +0 -22
- data/db/migrate/20100606073747_create_patron_relationships.rb +0 -13
- data/db/migrate/20100814091104_add_position_to_patron_relationship.rb +0 -11
- data/db/migrate/20100925074559_create_patron_import_results.rb +0 -12
- data/db/migrate/20110301121550_add_birth_date_and_death_date_to_patron.rb +0 -11
- data/db/migrate/20120413161403_add_fingerprint_to_patron_import_file.rb +0 -5
- data/db/migrate/20120413170720_add_error_message_to_patron_import_file.rb +0 -5
- data/db/migrate/20120511072422_add_patron_identifier_to_patron.rb +0 -6
- data/db/migrate/20120602141129_add_edit_mode_to_patron_import_file.rb +0 -5
- data/spec/controllers/patron_import_files_controller_spec.rb +0 -321
- data/spec/controllers/patron_relationship_types_controller_spec.rb +0 -445
- data/spec/controllers/patron_relationships_controller_spec.rb +0 -446
- data/spec/controllers/patron_types_controller_spec.rb +0 -447
- data/spec/controllers/patrons_controller_spec.rb +0 -644
- data/spec/dummy/app/mailers/notifier.rb +0 -40
- data/spec/dummy/lib/plugins/ext/event-calendar.rb +0 -38
- data/spec/dummy/lib/plugins/ext/sunspot/abstract_search.rb +0 -12
- data/spec/dummy/lib/plugins/ext/sunspot/dismax.rb +0 -41
- data/spec/dummy/lib/plugins/ext/sunspot/start_record.rb +0 -55
- data/spec/dummy/lib/plugins/ext/sunspot.rb +0 -3
- data/spec/dummy/lib/plugins/ext.rb +0 -1
- data/spec/dummy/lib/plugins.rb +0 -2
- data/spec/dummy/solr/data/test/index/_goc.fdt +0 -0
- data/spec/dummy/solr/data/test/index/_goc.fdx +0 -0
- data/spec/dummy/solr/data/test/index/_goc.fnm +0 -7
- data/spec/dummy/solr/data/test/index/_goc.frq +0 -0
- data/spec/dummy/solr/data/test/index/_goc.nrm +0 -1
- data/spec/dummy/solr/data/test/index/_goc.prx +0 -0
- data/spec/dummy/solr/data/test/index/_goc.tii +0 -0
- data/spec/dummy/solr/data/test/index/_goc.tis +0 -0
- data/spec/dummy/solr/data/test/index/_god.fdt +0 -0
- data/spec/dummy/solr/data/test/index/_god.fdx +0 -0
- data/spec/dummy/solr/data/test/index/_god.fnm +0 -7
- data/spec/dummy/solr/data/test/index/_god.frq +0 -0
- data/spec/dummy/solr/data/test/index/_god.nrm +0 -1
- data/spec/dummy/solr/data/test/index/_god.prx +0 -0
- data/spec/dummy/solr/data/test/index/_god.tii +0 -0
- data/spec/dummy/solr/data/test/index/_god.tis +0 -0
- data/spec/dummy/solr/data/test/index/_goe.fdt +0 -0
- data/spec/dummy/solr/data/test/index/_goe.fdx +0 -0
- data/spec/dummy/solr/data/test/index/_goe.fnm +0 -8
- data/spec/dummy/solr/data/test/index/_goe.frq +0 -0
- data/spec/dummy/solr/data/test/index/_goe.nrm +0 -1
- data/spec/dummy/solr/data/test/index/_goe.prx +0 -0
- data/spec/dummy/solr/data/test/index/_goe.tii +0 -0
- data/spec/dummy/solr/data/test/index/_goe.tis +0 -0
- data/spec/dummy/solr/data/test/index/segments_otc +0 -0
- data/spec/dummy/tmp/cache/4AD/470/country_all +0 -0
- data/spec/models/patron_import_file_spec.rb +0 -96
- data/spec/requests/patrons_spec.rb +0 -9
- data/spec/routing/patron_relationship_types_routing_spec.rb +0 -35
- data/spec/routing/patron_relationships_routing_spec.rb +0 -35
- data/spec/routing/patrons_routing_spec.rb +0 -35
@@ -1,445 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
require 'sunspot/rails/spec_helper'
|
3
|
-
|
4
|
-
describe PatronRelationshipTypesController do
|
5
|
-
fixtures :all
|
6
|
-
disconnect_sunspot
|
7
|
-
|
8
|
-
def valid_attributes
|
9
|
-
FactoryGirl.attributes_for(:patron_relationship_type)
|
10
|
-
end
|
11
|
-
|
12
|
-
describe "GET index" do
|
13
|
-
before(:each) do
|
14
|
-
FactoryGirl.create(:patron_relationship_type)
|
15
|
-
end
|
16
|
-
|
17
|
-
describe "When logged in as Administrator" do
|
18
|
-
login_admin
|
19
|
-
|
20
|
-
it "assigns all patron_relationship_types as @patron_relationship_types" do
|
21
|
-
get :index
|
22
|
-
assigns(:patron_relationship_types).should eq(PatronRelationshipType.all)
|
23
|
-
end
|
24
|
-
end
|
25
|
-
|
26
|
-
describe "When logged in as Librarian" do
|
27
|
-
login_librarian
|
28
|
-
|
29
|
-
it "assigns all patron_relationship_types as @patron_relationship_types" do
|
30
|
-
get :index
|
31
|
-
assigns(:patron_relationship_types).should eq(PatronRelationshipType.all)
|
32
|
-
end
|
33
|
-
end
|
34
|
-
|
35
|
-
describe "When logged in as User" do
|
36
|
-
login_user
|
37
|
-
|
38
|
-
it "assigns all patron_relationship_types as @patron_relationship_types" do
|
39
|
-
get :index
|
40
|
-
assigns(:patron_relationship_types).should eq(PatronRelationshipType.all)
|
41
|
-
end
|
42
|
-
end
|
43
|
-
|
44
|
-
describe "When not logged in" do
|
45
|
-
it "assigns all patron_relationship_types as @patron_relationship_types" do
|
46
|
-
get :index
|
47
|
-
assigns(:patron_relationship_types).should eq(PatronRelationshipType.all)
|
48
|
-
end
|
49
|
-
end
|
50
|
-
end
|
51
|
-
|
52
|
-
describe "GET show" do
|
53
|
-
describe "When logged in as Administrator" do
|
54
|
-
login_admin
|
55
|
-
|
56
|
-
it "assigns the requested patron_relationship_type as @patron_relationship_type" do
|
57
|
-
patron_relationship_type = FactoryGirl.create(:patron_relationship_type)
|
58
|
-
get :show, :id => patron_relationship_type.id
|
59
|
-
assigns(:patron_relationship_type).should eq(patron_relationship_type)
|
60
|
-
end
|
61
|
-
end
|
62
|
-
|
63
|
-
describe "When logged in as Librarian" do
|
64
|
-
login_librarian
|
65
|
-
|
66
|
-
it "assigns the requested patron_relationship_type as @patron_relationship_type" do
|
67
|
-
patron_relationship_type = FactoryGirl.create(:patron_relationship_type)
|
68
|
-
get :show, :id => patron_relationship_type.id
|
69
|
-
assigns(:patron_relationship_type).should eq(patron_relationship_type)
|
70
|
-
end
|
71
|
-
end
|
72
|
-
|
73
|
-
describe "When logged in as User" do
|
74
|
-
login_user
|
75
|
-
|
76
|
-
it "assigns the requested patron_relationship_type as @patron_relationship_type" do
|
77
|
-
patron_relationship_type = FactoryGirl.create(:patron_relationship_type)
|
78
|
-
get :show, :id => patron_relationship_type.id
|
79
|
-
assigns(:patron_relationship_type).should eq(patron_relationship_type)
|
80
|
-
end
|
81
|
-
end
|
82
|
-
|
83
|
-
describe "When not logged in" do
|
84
|
-
it "assigns the requested patron_relationship_type as @patron_relationship_type" do
|
85
|
-
patron_relationship_type = FactoryGirl.create(:patron_relationship_type)
|
86
|
-
get :show, :id => patron_relationship_type.id
|
87
|
-
assigns(:patron_relationship_type).should eq(patron_relationship_type)
|
88
|
-
end
|
89
|
-
end
|
90
|
-
end
|
91
|
-
|
92
|
-
describe "GET new" do
|
93
|
-
describe "When logged in as Administrator" do
|
94
|
-
login_admin
|
95
|
-
|
96
|
-
it "assigns the requested patron_relationship_type as @patron_relationship_type" do
|
97
|
-
get :new
|
98
|
-
assigns(:patron_relationship_type).should_not be_valid
|
99
|
-
response.should be_success
|
100
|
-
end
|
101
|
-
end
|
102
|
-
|
103
|
-
describe "When logged in as Librarian" do
|
104
|
-
login_librarian
|
105
|
-
|
106
|
-
it "should not assign the requested patron_relationship_type as @patron_relationship_type" do
|
107
|
-
get :new
|
108
|
-
assigns(:patron_relationship_type).should_not be_valid
|
109
|
-
response.should be_forbidden
|
110
|
-
end
|
111
|
-
end
|
112
|
-
|
113
|
-
describe "When logged in as User" do
|
114
|
-
login_user
|
115
|
-
|
116
|
-
it "should not assign the requested patron_relationship_type as @patron_relationship_type" do
|
117
|
-
get :new
|
118
|
-
assigns(:patron_relationship_type).should_not be_valid
|
119
|
-
response.should be_forbidden
|
120
|
-
end
|
121
|
-
end
|
122
|
-
|
123
|
-
describe "When not logged in" do
|
124
|
-
it "should not assign the requested patron_relationship_type as @patron_relationship_type" do
|
125
|
-
get :new
|
126
|
-
assigns(:patron_relationship_type).should_not be_valid
|
127
|
-
response.should redirect_to(new_user_session_url)
|
128
|
-
end
|
129
|
-
end
|
130
|
-
end
|
131
|
-
|
132
|
-
describe "GET edit" do
|
133
|
-
describe "When logged in as Administrator" do
|
134
|
-
login_admin
|
135
|
-
|
136
|
-
it "assigns the requested patron_relationship_type as @patron_relationship_type" do
|
137
|
-
patron_relationship_type = FactoryGirl.create(:patron_relationship_type)
|
138
|
-
get :edit, :id => patron_relationship_type.id
|
139
|
-
assigns(:patron_relationship_type).should eq(patron_relationship_type)
|
140
|
-
end
|
141
|
-
end
|
142
|
-
|
143
|
-
describe "When logged in as Librarian" do
|
144
|
-
login_librarian
|
145
|
-
|
146
|
-
it "assigns the requested patron_relationship_type as @patron_relationship_type" do
|
147
|
-
patron_relationship_type = FactoryGirl.create(:patron_relationship_type)
|
148
|
-
get :edit, :id => patron_relationship_type.id
|
149
|
-
response.should be_forbidden
|
150
|
-
end
|
151
|
-
end
|
152
|
-
|
153
|
-
describe "When logged in as User" do
|
154
|
-
login_user
|
155
|
-
|
156
|
-
it "assigns the requested patron_relationship_type as @patron_relationship_type" do
|
157
|
-
patron_relationship_type = FactoryGirl.create(:patron_relationship_type)
|
158
|
-
get :edit, :id => patron_relationship_type.id
|
159
|
-
response.should be_forbidden
|
160
|
-
end
|
161
|
-
end
|
162
|
-
|
163
|
-
describe "When not logged in" do
|
164
|
-
it "should not assign the requested patron_relationship_type as @patron_relationship_type" do
|
165
|
-
patron_relationship_type = FactoryGirl.create(:patron_relationship_type)
|
166
|
-
get :edit, :id => patron_relationship_type.id
|
167
|
-
response.should redirect_to(new_user_session_url)
|
168
|
-
end
|
169
|
-
end
|
170
|
-
end
|
171
|
-
|
172
|
-
describe "POST create" do
|
173
|
-
before(:each) do
|
174
|
-
@attrs = valid_attributes
|
175
|
-
@invalid_attrs = {:name => ''}
|
176
|
-
end
|
177
|
-
|
178
|
-
describe "When logged in as Administrator" do
|
179
|
-
login_admin
|
180
|
-
|
181
|
-
describe "with valid params" do
|
182
|
-
it "assigns a newly created patron_relationship_type as @patron_relationship_type" do
|
183
|
-
post :create, :patron_relationship_type => @attrs
|
184
|
-
assigns(:patron_relationship_type).should be_valid
|
185
|
-
end
|
186
|
-
|
187
|
-
it "redirects to the created patron" do
|
188
|
-
post :create, :patron_relationship_type => @attrs
|
189
|
-
response.should redirect_to(assigns(:patron_relationship_type))
|
190
|
-
end
|
191
|
-
end
|
192
|
-
|
193
|
-
describe "with invalid params" do
|
194
|
-
it "assigns a newly created but unsaved patron_relationship_type as @patron_relationship_type" do
|
195
|
-
post :create, :patron_relationship_type => @invalid_attrs
|
196
|
-
assigns(:patron_relationship_type).should_not be_valid
|
197
|
-
end
|
198
|
-
|
199
|
-
it "should be successful" do
|
200
|
-
post :create, :patron_relationship_type => @invalid_attrs
|
201
|
-
response.should be_success
|
202
|
-
end
|
203
|
-
end
|
204
|
-
end
|
205
|
-
|
206
|
-
describe "When logged in as Librarian" do
|
207
|
-
login_librarian
|
208
|
-
|
209
|
-
describe "with valid params" do
|
210
|
-
it "assigns a newly created patron_relationship_type as @patron_relationship_type" do
|
211
|
-
post :create, :patron_relationship_type => @attrs
|
212
|
-
assigns(:patron_relationship_type).should be_valid
|
213
|
-
end
|
214
|
-
|
215
|
-
it "should be forbidden" do
|
216
|
-
post :create, :patron_relationship_type => @attrs
|
217
|
-
response.should be_forbidden
|
218
|
-
end
|
219
|
-
end
|
220
|
-
|
221
|
-
describe "with invalid params" do
|
222
|
-
it "assigns a newly created but unsaved patron_relationship_type as @patron_relationship_type" do
|
223
|
-
post :create, :patron_relationship_type => @invalid_attrs
|
224
|
-
assigns(:patron_relationship_type).should_not be_valid
|
225
|
-
end
|
226
|
-
|
227
|
-
it "should be forbidden" do
|
228
|
-
post :create, :patron_relationship_type => @invalid_attrs
|
229
|
-
response.should be_forbidden
|
230
|
-
end
|
231
|
-
end
|
232
|
-
end
|
233
|
-
|
234
|
-
describe "When logged in as User" do
|
235
|
-
login_user
|
236
|
-
|
237
|
-
describe "with valid params" do
|
238
|
-
it "assigns a newly created patron_relationship_type as @patron_relationship_type" do
|
239
|
-
post :create, :patron_relationship_type => @attrs
|
240
|
-
assigns(:patron_relationship_type).should be_valid
|
241
|
-
end
|
242
|
-
|
243
|
-
it "should be forbidden" do
|
244
|
-
post :create, :patron_relationship_type => @attrs
|
245
|
-
response.should be_forbidden
|
246
|
-
end
|
247
|
-
end
|
248
|
-
|
249
|
-
describe "with invalid params" do
|
250
|
-
it "assigns a newly created but unsaved patron_relationship_type as @patron_relationship_type" do
|
251
|
-
post :create, :patron_relationship_type => @invalid_attrs
|
252
|
-
assigns(:patron_relationship_type).should_not be_valid
|
253
|
-
end
|
254
|
-
|
255
|
-
it "should be forbidden" do
|
256
|
-
post :create, :patron_relationship_type => @invalid_attrs
|
257
|
-
response.should be_forbidden
|
258
|
-
end
|
259
|
-
end
|
260
|
-
end
|
261
|
-
|
262
|
-
describe "When not logged in" do
|
263
|
-
describe "with valid params" do
|
264
|
-
it "assigns a newly created patron_relationship_type as @patron_relationship_type" do
|
265
|
-
post :create, :patron_relationship_type => @attrs
|
266
|
-
assigns(:patron_relationship_type).should be_valid
|
267
|
-
end
|
268
|
-
|
269
|
-
it "should be forbidden" do
|
270
|
-
post :create, :patron_relationship_type => @attrs
|
271
|
-
response.should redirect_to(new_user_session_url)
|
272
|
-
end
|
273
|
-
end
|
274
|
-
|
275
|
-
describe "with invalid params" do
|
276
|
-
it "assigns a newly created but unsaved patron_relationship_type as @patron_relationship_type" do
|
277
|
-
post :create, :patron_relationship_type => @invalid_attrs
|
278
|
-
assigns(:patron_relationship_type).should_not be_valid
|
279
|
-
end
|
280
|
-
|
281
|
-
it "should be forbidden" do
|
282
|
-
post :create, :patron_relationship_type => @invalid_attrs
|
283
|
-
response.should redirect_to(new_user_session_url)
|
284
|
-
end
|
285
|
-
end
|
286
|
-
end
|
287
|
-
end
|
288
|
-
|
289
|
-
describe "PUT update" do
|
290
|
-
before(:each) do
|
291
|
-
@patron_relationship_type = FactoryGirl.create(:patron_relationship_type)
|
292
|
-
@attrs = valid_attributes
|
293
|
-
@invalid_attrs = {:name => ''}
|
294
|
-
end
|
295
|
-
|
296
|
-
describe "When logged in as Administrator" do
|
297
|
-
login_admin
|
298
|
-
|
299
|
-
describe "with valid params" do
|
300
|
-
it "updates the requested patron_relationship_type" do
|
301
|
-
put :update, :id => @patron_relationship_type.id, :patron_relationship_type => @attrs
|
302
|
-
end
|
303
|
-
|
304
|
-
it "assigns the requested patron_relationship_type as @patron_relationship_type" do
|
305
|
-
put :update, :id => @patron_relationship_type.id, :patron_relationship_type => @attrs
|
306
|
-
assigns(:patron_relationship_type).should eq(@patron_relationship_type)
|
307
|
-
end
|
308
|
-
|
309
|
-
it "moves its position when specified" do
|
310
|
-
put :update, :id => @patron_relationship_type.id, :patron_relationship_type => @attrs, :move => 'lower'
|
311
|
-
response.should redirect_to(patron_relationship_types_url)
|
312
|
-
end
|
313
|
-
end
|
314
|
-
|
315
|
-
describe "with invalid params" do
|
316
|
-
it "assigns the requested patron_relationship_type as @patron_relationship_type" do
|
317
|
-
put :update, :id => @patron_relationship_type.id, :patron_relationship_type => @invalid_attrs
|
318
|
-
response.should render_template("edit")
|
319
|
-
end
|
320
|
-
end
|
321
|
-
end
|
322
|
-
|
323
|
-
describe "When logged in as Librarian" do
|
324
|
-
login_librarian
|
325
|
-
|
326
|
-
describe "with valid params" do
|
327
|
-
it "updates the requested patron_relationship_type" do
|
328
|
-
put :update, :id => @patron_relationship_type.id, :patron_relationship_type => @attrs
|
329
|
-
end
|
330
|
-
|
331
|
-
it "assigns the requested patron_relationship_type as @patron_relationship_type" do
|
332
|
-
put :update, :id => @patron_relationship_type.id, :patron_relationship_type => @attrs
|
333
|
-
assigns(:patron_relationship_type).should eq(@patron_relationship_type)
|
334
|
-
response.should be_forbidden
|
335
|
-
end
|
336
|
-
end
|
337
|
-
|
338
|
-
describe "with invalid params" do
|
339
|
-
it "assigns the requested patron_relationship_type as @patron_relationship_type" do
|
340
|
-
put :update, :id => @patron_relationship_type.id, :patron_relationship_type => @invalid_attrs
|
341
|
-
response.should be_forbidden
|
342
|
-
end
|
343
|
-
end
|
344
|
-
end
|
345
|
-
|
346
|
-
describe "When logged in as User" do
|
347
|
-
login_user
|
348
|
-
|
349
|
-
describe "with valid params" do
|
350
|
-
it "updates the requested patron_relationship_type" do
|
351
|
-
put :update, :id => @patron_relationship_type.id, :patron_relationship_type => @attrs
|
352
|
-
end
|
353
|
-
|
354
|
-
it "assigns the requested patron_relationship_type as @patron_relationship_type" do
|
355
|
-
put :update, :id => @patron_relationship_type.id, :patron_relationship_type => @attrs
|
356
|
-
assigns(:patron_relationship_type).should eq(@patron_relationship_type)
|
357
|
-
response.should be_forbidden
|
358
|
-
end
|
359
|
-
end
|
360
|
-
|
361
|
-
describe "with invalid params" do
|
362
|
-
it "assigns the requested patron_relationship_type as @patron_relationship_type" do
|
363
|
-
put :update, :id => @patron_relationship_type.id, :patron_relationship_type => @invalid_attrs
|
364
|
-
response.should be_forbidden
|
365
|
-
end
|
366
|
-
end
|
367
|
-
end
|
368
|
-
|
369
|
-
describe "When not logged in" do
|
370
|
-
describe "with valid params" do
|
371
|
-
it "updates the requested patron_relationship_type" do
|
372
|
-
put :update, :id => @patron_relationship_type.id, :patron_relationship_type => @attrs
|
373
|
-
end
|
374
|
-
|
375
|
-
it "should be forbidden" do
|
376
|
-
put :update, :id => @patron_relationship_type.id, :patron_relationship_type => @attrs
|
377
|
-
response.should redirect_to(new_user_session_url)
|
378
|
-
end
|
379
|
-
end
|
380
|
-
|
381
|
-
describe "with invalid params" do
|
382
|
-
it "assigns the requested patron_relationship_type as @patron_relationship_type" do
|
383
|
-
put :update, :id => @patron_relationship_type.id, :patron_relationship_type => @invalid_attrs
|
384
|
-
response.should redirect_to(new_user_session_url)
|
385
|
-
end
|
386
|
-
end
|
387
|
-
end
|
388
|
-
end
|
389
|
-
|
390
|
-
describe "DELETE destroy" do
|
391
|
-
before(:each) do
|
392
|
-
@patron_relationship_type = FactoryGirl.create(:patron_relationship_type)
|
393
|
-
end
|
394
|
-
|
395
|
-
describe "When logged in as Administrator" do
|
396
|
-
login_admin
|
397
|
-
|
398
|
-
it "destroys the requested patron_relationship_type" do
|
399
|
-
delete :destroy, :id => @patron_relationship_type.id
|
400
|
-
end
|
401
|
-
|
402
|
-
it "redirects to the patron_relationship_types list" do
|
403
|
-
delete :destroy, :id => @patron_relationship_type.id
|
404
|
-
response.should redirect_to(patron_relationship_types_url)
|
405
|
-
end
|
406
|
-
end
|
407
|
-
|
408
|
-
describe "When logged in as Librarian" do
|
409
|
-
login_librarian
|
410
|
-
|
411
|
-
it "destroys the requested patron_relationship_type" do
|
412
|
-
delete :destroy, :id => @patron_relationship_type.id
|
413
|
-
end
|
414
|
-
|
415
|
-
it "should be forbidden" do
|
416
|
-
delete :destroy, :id => @patron_relationship_type.id
|
417
|
-
response.should be_forbidden
|
418
|
-
end
|
419
|
-
end
|
420
|
-
|
421
|
-
describe "When logged in as User" do
|
422
|
-
login_user
|
423
|
-
|
424
|
-
it "destroys the requested patron_relationship_type" do
|
425
|
-
delete :destroy, :id => @patron_relationship_type.id
|
426
|
-
end
|
427
|
-
|
428
|
-
it "should be forbidden" do
|
429
|
-
delete :destroy, :id => @patron_relationship_type.id
|
430
|
-
response.should be_forbidden
|
431
|
-
end
|
432
|
-
end
|
433
|
-
|
434
|
-
describe "When not logged in" do
|
435
|
-
it "destroys the requested patron_relationship_type" do
|
436
|
-
delete :destroy, :id => @patron_relationship_type.id
|
437
|
-
end
|
438
|
-
|
439
|
-
it "should be forbidden" do
|
440
|
-
delete :destroy, :id => @patron_relationship_type.id
|
441
|
-
response.should redirect_to(new_user_session_url)
|
442
|
-
end
|
443
|
-
end
|
444
|
-
end
|
445
|
-
end
|