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
@@ -34,8 +34,8 @@ module EnjuBiblio
|
|
34
34
|
image_tag('icons/help.png', :size => '16x16', :alt => t('page.unknown'))
|
35
35
|
end
|
36
36
|
|
37
|
-
def
|
38
|
-
case
|
37
|
+
def agent_type_icon(agent_type)
|
38
|
+
case agent_type
|
39
39
|
when 'Person'
|
40
40
|
image_tag('icons/user.png', :size => '16x16', :alt => 'Person')
|
41
41
|
when 'CorporateBody'
|
@@ -45,15 +45,15 @@ module EnjuBiblio
|
|
45
45
|
end
|
46
46
|
end
|
47
47
|
|
48
|
-
def
|
49
|
-
return nil if
|
50
|
-
|
48
|
+
def agents_list(agents = [], options = {})
|
49
|
+
return nil if agents.blank?
|
50
|
+
agents_list = []
|
51
51
|
if options[:nolink]
|
52
|
-
|
52
|
+
agents_list = agents.map{|agent| agent.full_name}
|
53
53
|
else
|
54
|
-
|
54
|
+
agents_list = agents.map{|agent| link_to(agent.full_name, manifestations_path(:query => "\"#{agent.full_name}\""), options)}
|
55
55
|
end
|
56
|
-
|
56
|
+
agents_list.join(" ").html_safe
|
57
57
|
end
|
58
58
|
end
|
59
59
|
end
|
data/lib/enju_biblio/version.rb
CHANGED
data/lib/enju_biblio.rb
CHANGED
@@ -42,9 +42,9 @@ module EnjuBiblio
|
|
42
42
|
@carrier_type = CarrierType.find(params[:carrier_type_id]) if params[:carrier_type_id]
|
43
43
|
end
|
44
44
|
|
45
|
-
def
|
46
|
-
@
|
47
|
-
authorize! :show, @
|
45
|
+
def get_agent
|
46
|
+
@agent = Agent.find(params[:agent_id]) if params[:agent_id]
|
47
|
+
authorize! :show, @agent if @agent
|
48
48
|
end
|
49
49
|
|
50
50
|
def get_series_statement
|
@@ -1,18 +1,18 @@
|
|
1
1
|
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
|
2
2
|
|
3
|
-
|
3
|
+
agent_relationship_type_00001:
|
4
4
|
id: 1
|
5
5
|
name: See also
|
6
6
|
display_name: See also
|
7
7
|
note:
|
8
8
|
position: 1
|
9
|
-
|
9
|
+
agent_relationship_type_00002:
|
10
10
|
id: 2
|
11
11
|
name: Member
|
12
12
|
display_name: Member
|
13
13
|
note:
|
14
14
|
position: 2
|
15
|
-
|
15
|
+
agent_relationship_type_00003:
|
16
16
|
id: 3
|
17
17
|
name: Child
|
18
18
|
display_name: Child
|
@@ -1,5 +1,5 @@
|
|
1
1
|
---
|
2
|
-
|
2
|
+
agent_type_00001:
|
3
3
|
id: 1
|
4
4
|
name: Person
|
5
5
|
display_name: "en: Person\r\n\
|
@@ -7,7 +7,7 @@ patron_type_00001:
|
|
7
7
|
note:
|
8
8
|
position: 1
|
9
9
|
|
10
|
-
|
10
|
+
agent_type_00002:
|
11
11
|
id: 2
|
12
12
|
name: CorporateBody
|
13
13
|
display_name: "en: CorporateBody\r\n\
|
@@ -1,19 +1,19 @@
|
|
1
1
|
---
|
2
|
-
|
2
|
+
agent_00001:
|
3
3
|
place: ""
|
4
4
|
full_name: Administrator
|
5
5
|
other_designation: ""
|
6
6
|
id: 1
|
7
7
|
address_1:
|
8
8
|
language_id: 1
|
9
|
-
|
9
|
+
agent_type_id: 1
|
10
10
|
required_role_id: 1
|
11
|
-
|
11
|
+
agent_00002:
|
12
12
|
place: ""
|
13
13
|
full_name: Your Library
|
14
14
|
other_designation: ""
|
15
15
|
id: 2
|
16
16
|
address_1:
|
17
17
|
language_id: 1
|
18
|
-
|
18
|
+
agent_type_id: 2
|
19
19
|
required_role_id: 1
|
@@ -0,0 +1,321 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require 'spec_helper'
|
3
|
+
|
4
|
+
describe AgentImportFilesController do
|
5
|
+
fixtures :all
|
6
|
+
|
7
|
+
describe "GET index" do
|
8
|
+
describe "When logged in as Administrator" do
|
9
|
+
before(:each) do
|
10
|
+
sign_in FactoryGirl.create(:admin)
|
11
|
+
end
|
12
|
+
|
13
|
+
it "assigns all agent_import_files as @agent_import_files" do
|
14
|
+
get :index
|
15
|
+
assigns(:agent_import_files).should eq(AgentImportFile.page(1))
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
describe "When logged in as Librarian" do
|
20
|
+
before(:each) do
|
21
|
+
sign_in FactoryGirl.create(:librarian)
|
22
|
+
end
|
23
|
+
|
24
|
+
it "assigns all agent_import_files as @agent_import_files" do
|
25
|
+
get :index
|
26
|
+
assigns(:agent_import_files).should eq(AgentImportFile.page(1))
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe "When logged in as User" do
|
31
|
+
before(:each) do
|
32
|
+
sign_in FactoryGirl.create(:user)
|
33
|
+
end
|
34
|
+
|
35
|
+
it "assigns empty as @agent_import_files" do
|
36
|
+
get :index
|
37
|
+
assigns(:agent_import_files).should be_empty
|
38
|
+
response.should be_forbidden
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
describe "When not logged in" do
|
43
|
+
it "assigns empty as @agent_import_files" do
|
44
|
+
get :index
|
45
|
+
assigns(:agent_import_files).should be_empty
|
46
|
+
response.should redirect_to(new_user_session_url)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
describe "GET show" do
|
52
|
+
describe "When logged in as Administrator" do
|
53
|
+
before(:each) do
|
54
|
+
sign_in FactoryGirl.create(:admin)
|
55
|
+
end
|
56
|
+
|
57
|
+
it "assigns the requested agent_import_file as @agent_import_file" do
|
58
|
+
get :show, :id => 1
|
59
|
+
assigns(:agent_import_file).should eq(AgentImportFile.find(1))
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
describe "When logged in as Librarian" do
|
64
|
+
before(:each) do
|
65
|
+
sign_in FactoryGirl.create(:librarian)
|
66
|
+
end
|
67
|
+
|
68
|
+
it "assigns the requested agent_import_file as @agent_import_file" do
|
69
|
+
get :show, :id => 1
|
70
|
+
assigns(:agent_import_file).should eq(AgentImportFile.find(1))
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
describe "When logged in as User" do
|
75
|
+
before(:each) do
|
76
|
+
sign_in FactoryGirl.create(:user)
|
77
|
+
end
|
78
|
+
|
79
|
+
it "assigns the requested agent_import_file as @agent_import_file" do
|
80
|
+
get :show, :id => 1
|
81
|
+
assigns(:agent_import_file).should eq(AgentImportFile.find(1))
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
describe "When not logged in" do
|
86
|
+
it "assigns the requested agent_import_file as @agent_import_file" do
|
87
|
+
get :show, :id => 1
|
88
|
+
assigns(:agent_import_file).should eq(AgentImportFile.find(1))
|
89
|
+
response.should redirect_to(new_user_session_url)
|
90
|
+
end
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
describe "GET new" do
|
95
|
+
describe "When logged in as Administrator" do
|
96
|
+
before(:each) do
|
97
|
+
sign_in FactoryGirl.create(:admin)
|
98
|
+
end
|
99
|
+
|
100
|
+
it "assigns the requested agent_import_file as @agent_import_file" do
|
101
|
+
get :new
|
102
|
+
assigns(:agent_import_file).should_not be_valid
|
103
|
+
response.should be_success
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
describe "When logged in as Librarian" do
|
108
|
+
before(:each) do
|
109
|
+
sign_in FactoryGirl.create(:librarian)
|
110
|
+
end
|
111
|
+
|
112
|
+
it "should not assign the requested agent_import_file as @agent_import_file" do
|
113
|
+
get :new
|
114
|
+
assigns(:agent_import_file).should_not be_valid
|
115
|
+
response.should be_success
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
describe "When logged in as User" do
|
120
|
+
before(:each) do
|
121
|
+
sign_in FactoryGirl.create(:user)
|
122
|
+
end
|
123
|
+
|
124
|
+
it "should not assign the requested agent_import_file as @agent_import_file" do
|
125
|
+
get :new
|
126
|
+
assigns(:agent_import_file).should_not be_valid
|
127
|
+
response.should be_forbidden
|
128
|
+
end
|
129
|
+
end
|
130
|
+
|
131
|
+
describe "When not logged in" do
|
132
|
+
it "should not assign the requested agent_import_file as @agent_import_file" do
|
133
|
+
get :new
|
134
|
+
assigns(:agent_import_file).should_not be_valid
|
135
|
+
response.should redirect_to(new_user_session_url)
|
136
|
+
end
|
137
|
+
end
|
138
|
+
end
|
139
|
+
|
140
|
+
describe "POST create" do
|
141
|
+
describe "When logged in as Librarian" do
|
142
|
+
before(:each) do
|
143
|
+
@user = FactoryGirl.create(:librarian)
|
144
|
+
sign_in @user
|
145
|
+
end
|
146
|
+
|
147
|
+
it "should create agent_import_file" do
|
148
|
+
post :create, :agent_import_file => {:agent_import => fixture_file_upload("/../../examples/agent_import_file_sample1.tsv", 'text/csv') }
|
149
|
+
assigns(:agent_import_file).should be_valid
|
150
|
+
assigns(:agent_import_file).user.username.should eq @user.username
|
151
|
+
response.should redirect_to agent_import_file_url(assigns(:agent_import_file))
|
152
|
+
end
|
153
|
+
|
154
|
+
it "should import user" do
|
155
|
+
old_agents_count = Agent.count
|
156
|
+
post :create, :agent_import_file => {:agent_import => fixture_file_upload("/../../examples/agent_import_file_sample2.tsv", 'text/csv') }
|
157
|
+
assigns(:agent_import_file).import_start
|
158
|
+
Agent.count.should eq old_agents_count + 7
|
159
|
+
response.should redirect_to agent_import_file_url(assigns(:agent_import_file))
|
160
|
+
end
|
161
|
+
end
|
162
|
+
|
163
|
+
describe "When logged in as User" do
|
164
|
+
before(:each) do
|
165
|
+
@user = FactoryGirl.create(:user)
|
166
|
+
sign_in @user
|
167
|
+
end
|
168
|
+
|
169
|
+
it "should be forbidden" do
|
170
|
+
post :create, :agent_import_file => {:agent_import => fixture_file_upload("/../..//examples/agent_import_file_sample1.tsv", 'text/csv') }
|
171
|
+
response.should be_forbidden
|
172
|
+
end
|
173
|
+
end
|
174
|
+
|
175
|
+
describe "When not logged in" do
|
176
|
+
it "should be redirect to new session url" do
|
177
|
+
post :create, :agent_import_file => {:agent_import => fixture_file_upload("/../../examples/agent_import_file_sample1.tsv", 'text/csv') }
|
178
|
+
response.should redirect_to new_user_session_url
|
179
|
+
end
|
180
|
+
end
|
181
|
+
end
|
182
|
+
|
183
|
+
describe "GET edit" do
|
184
|
+
describe "When logged in as Administrator" do
|
185
|
+
before(:each) do
|
186
|
+
sign_in FactoryGirl.create(:admin)
|
187
|
+
end
|
188
|
+
|
189
|
+
it "assigns the requested agent_import_file as @agent_import_file" do
|
190
|
+
agent_import_file = agent_import_files(:agent_import_file_00001)
|
191
|
+
get :edit, :id => agent_import_file.id
|
192
|
+
assigns(:agent_import_file).should eq(agent_import_file)
|
193
|
+
end
|
194
|
+
end
|
195
|
+
|
196
|
+
describe "When logged in as Librarian" do
|
197
|
+
before(:each) do
|
198
|
+
sign_in FactoryGirl.create(:librarian)
|
199
|
+
end
|
200
|
+
|
201
|
+
it "assigns the requested agent_import_file as @agent_import_file" do
|
202
|
+
agent_import_file = agent_import_files(:agent_import_file_00001)
|
203
|
+
get :edit, :id => agent_import_file.id
|
204
|
+
assigns(:agent_import_file).should eq(agent_import_file)
|
205
|
+
end
|
206
|
+
end
|
207
|
+
|
208
|
+
describe "When logged in as User" do
|
209
|
+
before(:each) do
|
210
|
+
sign_in FactoryGirl.create(:user)
|
211
|
+
end
|
212
|
+
|
213
|
+
it "assigns the requested agent_import_file as @agent_import_file" do
|
214
|
+
agent_import_file = agent_import_files(:agent_import_file_00001)
|
215
|
+
get :edit, :id => agent_import_file.id
|
216
|
+
response.should be_forbidden
|
217
|
+
end
|
218
|
+
end
|
219
|
+
|
220
|
+
describe "When not logged in" do
|
221
|
+
it "should not assign the requested agent_import_file as @agent_import_file" do
|
222
|
+
agent_import_file = agent_import_files(:agent_import_file_00001)
|
223
|
+
get :edit, :id => agent_import_file.id
|
224
|
+
response.should redirect_to(new_user_session_url)
|
225
|
+
end
|
226
|
+
end
|
227
|
+
end
|
228
|
+
|
229
|
+
describe "PUT update" do
|
230
|
+
describe "When logged in as Librarian" do
|
231
|
+
before(:each) do
|
232
|
+
sign_in FactoryGirl.create(:librarian)
|
233
|
+
end
|
234
|
+
|
235
|
+
it "should update agent_import_file" do
|
236
|
+
put :update, :id => agent_import_files(:agent_import_file_00003).id, :agent_import_file => { }
|
237
|
+
response.should redirect_to agent_import_file_url(assigns(:agent_import_file))
|
238
|
+
end
|
239
|
+
end
|
240
|
+
|
241
|
+
describe "When logged in as User" do
|
242
|
+
before(:each) do
|
243
|
+
sign_in FactoryGirl.create(:user)
|
244
|
+
end
|
245
|
+
|
246
|
+
it "should not update agent_import_file" do
|
247
|
+
put :update, :id => agent_import_files(:agent_import_file_00003).id, :agent_import_file => { }
|
248
|
+
response.should be_forbidden
|
249
|
+
end
|
250
|
+
end
|
251
|
+
|
252
|
+
describe "When not logged in" do
|
253
|
+
it "should not update agent_import_file" do
|
254
|
+
put :update, :id => agent_import_files(:agent_import_file_00003).id, :agent_import_file => { }
|
255
|
+
response.should redirect_to new_user_session_url
|
256
|
+
end
|
257
|
+
end
|
258
|
+
end
|
259
|
+
|
260
|
+
describe "DELETE destroy" do
|
261
|
+
before(:each) do
|
262
|
+
@agent_import_file = agent_import_files(:agent_import_file_00001)
|
263
|
+
end
|
264
|
+
|
265
|
+
describe "When logged in as Administrator" do
|
266
|
+
before(:each) do
|
267
|
+
sign_in FactoryGirl.create(:admin)
|
268
|
+
end
|
269
|
+
|
270
|
+
it "destroys the requested agent_import_file" do
|
271
|
+
delete :destroy, :id => @agent_import_file.id
|
272
|
+
end
|
273
|
+
|
274
|
+
it "redirects to the agent_import_files list" do
|
275
|
+
delete :destroy, :id => @agent_import_file.id
|
276
|
+
response.should redirect_to(agent_import_files_url)
|
277
|
+
end
|
278
|
+
end
|
279
|
+
|
280
|
+
describe "When logged in as Librarian" do
|
281
|
+
before(:each) do
|
282
|
+
sign_in FactoryGirl.create(:librarian)
|
283
|
+
end
|
284
|
+
|
285
|
+
it "destroys the requested agent_import_file" do
|
286
|
+
delete :destroy, :id => @agent_import_file.id
|
287
|
+
end
|
288
|
+
|
289
|
+
it "redirects to the agent_import_files list" do
|
290
|
+
delete :destroy, :id => @agent_import_file.id
|
291
|
+
response.should redirect_to(agent_import_files_url)
|
292
|
+
end
|
293
|
+
end
|
294
|
+
|
295
|
+
describe "When logged in as User" do
|
296
|
+
before(:each) do
|
297
|
+
sign_in FactoryGirl.create(:user)
|
298
|
+
end
|
299
|
+
|
300
|
+
it "destroys the requested agent_import_file" do
|
301
|
+
delete :destroy, :id => @agent_import_file.id
|
302
|
+
end
|
303
|
+
|
304
|
+
it "should be forbidden" do
|
305
|
+
delete :destroy, :id => @agent_import_file.id
|
306
|
+
response.should be_forbidden
|
307
|
+
end
|
308
|
+
end
|
309
|
+
|
310
|
+
describe "When not logged in" do
|
311
|
+
it "destroys the requested agent_import_file" do
|
312
|
+
delete :destroy, :id => @agent_import_file.id
|
313
|
+
end
|
314
|
+
|
315
|
+
it "should be forbidden" do
|
316
|
+
delete :destroy, :id => @agent_import_file.id
|
317
|
+
response.should redirect_to(new_user_session_url)
|
318
|
+
end
|
319
|
+
end
|
320
|
+
end
|
321
|
+
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
require 'spec_helper'
|
3
3
|
|
4
|
-
describe
|
4
|
+
describe AgentImportResultsController do
|
5
5
|
fixtures :all
|
6
6
|
|
7
7
|
describe "GET index" do
|
@@ -10,9 +10,9 @@ describe PatronImportResultsController do
|
|
10
10
|
sign_in FactoryGirl.create(:admin)
|
11
11
|
end
|
12
12
|
|
13
|
-
it "assigns all
|
13
|
+
it "assigns all agent_import_results as @agent_import_results" do
|
14
14
|
get :index
|
15
|
-
assigns(:
|
15
|
+
assigns(:agent_import_results).should eq(AgentImportResult.page(1))
|
16
16
|
end
|
17
17
|
end
|
18
18
|
|
@@ -21,9 +21,9 @@ describe PatronImportResultsController do
|
|
21
21
|
sign_in FactoryGirl.create(:librarian)
|
22
22
|
end
|
23
23
|
|
24
|
-
it "assigns all
|
24
|
+
it "assigns all agent_import_results as @agent_import_results" do
|
25
25
|
get :index
|
26
|
-
assigns(:
|
26
|
+
assigns(:agent_import_results).should eq(AgentImportResult.page(1))
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
@@ -32,17 +32,17 @@ describe PatronImportResultsController do
|
|
32
32
|
sign_in FactoryGirl.create(:user)
|
33
33
|
end
|
34
34
|
|
35
|
-
it "assigns empty as @
|
35
|
+
it "assigns empty as @agent_import_results" do
|
36
36
|
get :index
|
37
|
-
assigns(:
|
37
|
+
assigns(:agent_import_results).should be_empty
|
38
38
|
response.should be_forbidden
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|
42
42
|
describe "When not logged in" do
|
43
|
-
it "assigns empty as @
|
43
|
+
it "assigns empty as @agent_import_results" do
|
44
44
|
get :index
|
45
|
-
assigns(:
|
45
|
+
assigns(:agent_import_results).should be_empty
|
46
46
|
response.should redirect_to(new_user_session_url)
|
47
47
|
end
|
48
48
|
end
|
@@ -54,9 +54,9 @@ describe PatronImportResultsController do
|
|
54
54
|
sign_in FactoryGirl.create(:admin)
|
55
55
|
end
|
56
56
|
|
57
|
-
it "assigns the requested
|
57
|
+
it "assigns the requested agent_import_result as @agent_import_result" do
|
58
58
|
get :show, :id => 1
|
59
|
-
assigns(:
|
59
|
+
assigns(:agent_import_result).should eq(AgentImportResult.find(1))
|
60
60
|
end
|
61
61
|
end
|
62
62
|
|
@@ -65,9 +65,9 @@ describe PatronImportResultsController do
|
|
65
65
|
sign_in FactoryGirl.create(:librarian)
|
66
66
|
end
|
67
67
|
|
68
|
-
it "assigns the requested
|
68
|
+
it "assigns the requested agent_import_result as @agent_import_result" do
|
69
69
|
get :show, :id => 1
|
70
|
-
assigns(:
|
70
|
+
assigns(:agent_import_result).should eq(AgentImportResult.find(1))
|
71
71
|
end
|
72
72
|
end
|
73
73
|
|
@@ -76,16 +76,16 @@ describe PatronImportResultsController do
|
|
76
76
|
sign_in FactoryGirl.create(:user)
|
77
77
|
end
|
78
78
|
|
79
|
-
it "assigns the requested
|
79
|
+
it "assigns the requested agent_import_result as @agent_import_result" do
|
80
80
|
get :show, :id => 1
|
81
|
-
assigns(:
|
81
|
+
assigns(:agent_import_result).should eq(AgentImportResult.find(1))
|
82
82
|
end
|
83
83
|
end
|
84
84
|
|
85
85
|
describe "When not logged in" do
|
86
|
-
it "assigns the requested
|
86
|
+
it "assigns the requested agent_import_result as @agent_import_result" do
|
87
87
|
get :show, :id => 1
|
88
|
-
assigns(:
|
88
|
+
assigns(:agent_import_result).should eq(AgentImportResult.find(1))
|
89
89
|
response.should redirect_to(new_user_session_url)
|
90
90
|
end
|
91
91
|
end
|