alexandria-book-collection-manager 0.7.3 → 0.7.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (192) hide show
  1. checksums.yaml +4 -4
  2. data/.github/dependabot.yml +9 -0
  3. data/.github/workflows/ruby.yml +77 -0
  4. data/.gitignore +4 -1
  5. data/.rubocop.yml +86 -36
  6. data/.rubocop_todo.yml +58 -161
  7. data/.simplecov +5 -2
  8. data/CHANGELOG.md +56 -2
  9. data/Gemfile +4 -3
  10. data/INSTALL.md +23 -11
  11. data/README.md +52 -41
  12. data/Rakefile +78 -75
  13. data/alexandria-book-collection-manager.gemspec +50 -44
  14. data/bin/alexandria +12 -22
  15. data/doc/FAQ +1 -2
  16. data/doc/dependency_decisions.yml +27 -8
  17. data/lib/alexandria.rb +25 -23
  18. data/lib/alexandria/about.rb +50 -50
  19. data/lib/alexandria/book_providers.rb +86 -91
  20. data/lib/alexandria/book_providers/adlibris.rb +37 -74
  21. data/lib/alexandria/book_providers/amazon_aws.rb +94 -100
  22. data/lib/alexandria/book_providers/amazon_ecs_util.rb +289 -324
  23. data/lib/alexandria/book_providers/barnes_and_noble.rb +42 -42
  24. data/lib/alexandria/book_providers/douban.rb +25 -41
  25. data/lib/alexandria/book_providers/proxis.rb +34 -29
  26. data/lib/alexandria/book_providers/pseudomarc.rb +77 -85
  27. data/lib/alexandria/book_providers/siciliano.rb +60 -64
  28. data/lib/alexandria/book_providers/thalia_provider.rb +161 -0
  29. data/lib/alexandria/book_providers/web.rb +5 -5
  30. data/lib/alexandria/book_providers/worldcat.rb +66 -95
  31. data/lib/alexandria/book_providers/z3950.rb +153 -169
  32. data/lib/alexandria/config.rb +1 -1
  33. data/lib/alexandria/console.rb +3 -3
  34. data/lib/alexandria/default_preferences.rb +37 -0
  35. data/lib/alexandria/execution_queue.rb +13 -12
  36. data/lib/alexandria/export_format.rb +8 -8
  37. data/lib/alexandria/export_library.rb +128 -127
  38. data/lib/alexandria/import_library.rb +102 -126
  39. data/lib/alexandria/import_library_csv.rb +41 -41
  40. data/lib/alexandria/library_collection.rb +6 -5
  41. data/lib/alexandria/library_sort_order.rb +4 -2
  42. data/lib/alexandria/library_store.rb +39 -28
  43. data/lib/alexandria/logging.rb +10 -14
  44. data/lib/alexandria/models/book.rb +5 -4
  45. data/lib/alexandria/models/library.rb +63 -53
  46. data/lib/alexandria/net.rb +5 -6
  47. data/lib/alexandria/preferences.rb +66 -63
  48. data/lib/alexandria/scanners.rb +2 -2
  49. data/lib/alexandria/scanners/{cuecat.rb → cue_cat.rb} +17 -17
  50. data/lib/alexandria/scanners/keyboard.rb +8 -8
  51. data/lib/alexandria/smart_library.rb +110 -112
  52. data/lib/alexandria/ui.rb +15 -15
  53. data/lib/alexandria/ui/{dialogs/about_dialog.rb → about_dialog.rb} +2 -2
  54. data/lib/alexandria/ui/{dialogs/acquire_dialog.rb → acquire_dialog.rb} +108 -109
  55. data/lib/alexandria/ui/alert_dialog.rb +66 -0
  56. data/lib/alexandria/ui/{dialogs/bad_isbns_dialog.rb → bad_isbns_dialog.rb} +13 -9
  57. data/lib/alexandria/ui/{dialogs/barcode_animation.rb → barcode_animation.rb} +16 -15
  58. data/lib/alexandria/ui/{dialogs/book_properties_dialog.rb → book_properties_dialog.rb} +25 -38
  59. data/lib/alexandria/ui/{dialogs/book_properties_dialog_base.rb → book_properties_dialog_base.rb} +64 -157
  60. data/lib/alexandria/ui/builder_base.rb +1 -1
  61. data/lib/alexandria/ui/calendar_popup.rb +58 -0
  62. data/lib/alexandria/ui/callbacks.rb +187 -155
  63. data/lib/alexandria/ui/completion_models.rb +8 -22
  64. data/lib/alexandria/ui/confirm_erase_dialog.rb +33 -0
  65. data/lib/alexandria/ui/conflict_while_copying_dialog.rb +34 -0
  66. data/lib/alexandria/ui/dndable.rb +7 -7
  67. data/lib/alexandria/ui/error_dialog.rb +25 -0
  68. data/lib/alexandria/ui/{dialogs/export_dialog.rb → export_dialog.rb} +37 -58
  69. data/lib/alexandria/ui/icons.rb +38 -43
  70. data/lib/alexandria/ui/iconview.rb +12 -10
  71. data/lib/alexandria/ui/iconview_tooltips.rb +41 -54
  72. data/lib/alexandria/ui/import_dialog.rb +157 -0
  73. data/lib/alexandria/ui/init.rb +30 -41
  74. data/lib/alexandria/ui/{dialogs/keep_bad_isbn_dialog.rb → keep_bad_isbn_dialog.rb} +9 -6
  75. data/lib/alexandria/ui/libraries_combo.rb +15 -14
  76. data/lib/alexandria/ui/listview.rb +69 -67
  77. data/lib/alexandria/ui/main_app.rb +24 -26
  78. data/lib/alexandria/ui/misc_dialogs.rb +10 -0
  79. data/lib/alexandria/ui/multi_drag_treeview.rb +8 -9
  80. data/lib/alexandria/ui/{dialogs/new_book_dialog.rb → new_book_dialog.rb} +113 -114
  81. data/lib/alexandria/ui/{dialogs/new_book_dialog_manual.rb → new_book_dialog_manual.rb} +22 -19
  82. data/lib/alexandria/ui/new_provider_dialog.rb +100 -0
  83. data/lib/alexandria/ui/new_smart_library_dialog.rb +74 -0
  84. data/lib/alexandria/ui/preferences_dialog.rb +313 -0
  85. data/lib/alexandria/ui/provider_preferences_base_dialog.rb +95 -0
  86. data/lib/alexandria/ui/provider_preferences_dialog.rb +35 -0
  87. data/lib/alexandria/ui/{dialogs/misc_dialogs.rb → really_delete_dialog.rb} +7 -28
  88. data/lib/alexandria/ui/{sidepane.rb → sidepane_manager.rb} +53 -48
  89. data/lib/alexandria/ui/skip_entry_dialog.rb +33 -0
  90. data/lib/alexandria/ui/smart_library_properties_dialog.rb +60 -0
  91. data/lib/alexandria/ui/smart_library_properties_dialog_base.rb +242 -0
  92. data/lib/alexandria/ui/smart_library_rule_box.rb +119 -0
  93. data/lib/alexandria/ui/sound.rb +11 -13
  94. data/lib/alexandria/ui/ui_manager.rb +216 -200
  95. data/lib/alexandria/version.rb +4 -19
  96. data/lib/alexandria/web_themes.rb +21 -21
  97. data/po/Makefile +2 -2
  98. data/po/cs.po +992 -875
  99. data/po/cy.po +961 -874
  100. data/po/de.po +990 -865
  101. data/po/el.po +989 -865
  102. data/po/es.po +985 -861
  103. data/po/fr.po +987 -867
  104. data/po/ga.po +908 -820
  105. data/po/gl.po +980 -860
  106. data/po/it.po +986 -864
  107. data/po/ja.po +969 -849
  108. data/po/mk.po +984 -860
  109. data/po/nb.po +979 -859
  110. data/po/nl.po +983 -860
  111. data/po/pl.po +1018 -971
  112. data/po/pt.po +988 -857
  113. data/po/pt_BR.po +983 -863
  114. data/po/ru.po +994 -871
  115. data/po/sk.po +989 -867
  116. data/po/sv.po +976 -856
  117. data/po/uk.po +972 -858
  118. data/po/zh_TW.po +974 -854
  119. data/schemas/alexandria.schemas +24 -2
  120. data/share/alexandria/glade/acquire_dialog__builder.glade +1 -1
  121. data/share/alexandria/glade/book_properties_dialog__builder.glade +1 -1
  122. data/share/alexandria/glade/main_app__builder.glade +6 -21
  123. data/share/alexandria/glade/new_book_dialog__builder.glade +1 -1
  124. data/share/alexandria/glade/preferences_dialog__builder.glade +1 -1
  125. data/share/gnome/help/alexandria/C/introduction.xml +0 -4
  126. data/share/gnome/help/alexandria/C/searching.xml +1 -1
  127. data/share/gnome/help/alexandria/C/smart-libraries.xml +2 -2
  128. data/share/gnome/help/alexandria/C/working-with-libraries.xml +1 -1
  129. data/share/gnome/help/alexandria/fr/alexandria.xml +1 -1
  130. data/share/gnome/help/alexandria/ja/introduction.xml +0 -4
  131. data/share/gnome/help/alexandria/ja/smart-libraries.xml +1 -1
  132. data/spec/alexandria/book_providers/thalia_provider_spec.rb +119 -0
  133. data/spec/alexandria/book_providers/world_cat_provider_spec.rb +160 -0
  134. data/spec/alexandria/book_providers_spec.rb +62 -156
  135. data/spec/alexandria/book_spec.rb +12 -10
  136. data/spec/alexandria/console_spec.rb +6 -11
  137. data/spec/alexandria/export_library_spec.rb +47 -58
  138. data/spec/alexandria/library_spec.rb +121 -109
  139. data/spec/alexandria/library_store_spec.rb +8 -8
  140. data/spec/alexandria/preferences_spec.rb +44 -17
  141. data/spec/alexandria/scanners/cue_cat_spec.rb +52 -0
  142. data/spec/alexandria/smart_library_spec.rb +15 -15
  143. data/spec/alexandria/ui/about_dialog_spec.rb +14 -0
  144. data/spec/alexandria/ui/acquire_dialog_spec.rb +14 -0
  145. data/spec/alexandria/ui/alert_dialog_spec.rb +16 -0
  146. data/spec/alexandria/ui/bad_isbns_dialog_spec.rb +14 -0
  147. data/spec/alexandria/ui/book_properties_dialog_spec.rb +59 -0
  148. data/spec/alexandria/ui/confirm_erase_dialog_spec.rb +14 -0
  149. data/spec/alexandria/ui/conflict_while_copying_dialog_spec.rb +16 -0
  150. data/spec/alexandria/ui/error_dialog_spec.rb +14 -0
  151. data/spec/alexandria/ui/export_dialog_spec.rb +36 -0
  152. data/spec/alexandria/ui/icons_spec.rb +26 -0
  153. data/spec/alexandria/ui/iconview_spec.rb +7 -21
  154. data/spec/alexandria/ui/import_dialog_spec.rb +46 -0
  155. data/spec/alexandria/ui/keep_bad_isbn_dialog_spec.rb +17 -0
  156. data/spec/alexandria/ui/main_app_spec.rb +7 -34
  157. data/spec/alexandria/ui/new_book_dialog_manual_spec.rb +51 -0
  158. data/spec/alexandria/ui/{dialogs/new_book_dialog_spec.rb → new_book_dialog_spec.rb} +4 -4
  159. data/spec/alexandria/ui/new_provider_dialog_spec.rb +30 -0
  160. data/spec/alexandria/ui/new_smart_library_dialog_spec.rb +39 -0
  161. data/spec/alexandria/ui/preferences_dialog_spec.rb +14 -0
  162. data/spec/alexandria/ui/provider_preferences_dialog_spec.rb +34 -0
  163. data/spec/alexandria/ui/really_delete_dialog_spec.rb +16 -0
  164. data/spec/alexandria/ui/sidepane_manager_spec.rb +15 -0
  165. data/spec/alexandria/ui/skip_entry_dialog_spec.rb +14 -0
  166. data/spec/alexandria/ui/smart_library_properties_dialog_spec.rb +49 -0
  167. data/spec/alexandria/ui/sound_spec.rb +2 -2
  168. data/spec/alexandria/ui/ui_manager_spec.rb +44 -20
  169. data/spec/end_to_end/basic_run_spec.rb +21 -38
  170. data/spec/fixtures/cover.jpg +0 -0
  171. data/spec/spec_helper.rb +54 -10
  172. data/tasks/setup.rb +2 -2
  173. data/tasks/spec.rake +11 -11
  174. data/util/rake/fileinstall.rb +38 -35
  175. data/util/rake/gettextgenerate.rb +7 -7
  176. data/util/rake/omfgenerate.rb +7 -7
  177. metadata +158 -45
  178. data/dogtail/basic_run_test.py +0 -9
  179. data/lib/alexandria/book_providers/renaud.rb +0 -155
  180. data/lib/alexandria/book_providers/thalia.rb +0 -198
  181. data/lib/alexandria/ui/dialogs/alert_dialog.rb +0 -63
  182. data/lib/alexandria/ui/dialogs/import_dialog.rb +0 -176
  183. data/lib/alexandria/ui/dialogs/new_smart_library_dialog.rb +0 -62
  184. data/lib/alexandria/ui/dialogs/preferences_dialog.rb +0 -563
  185. data/lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb +0 -61
  186. data/lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb +0 -423
  187. data/spec/alexandria/scanners/cuecat_spec.rb +0 -67
  188. data/spec/alexandria/ui/dialogs_spec.rb +0 -162
  189. data/spec/alexandria/ui/sidepane_spec.rb +0 -29
  190. data/spec/alexandria/ui/ui_utilities_spec.rb +0 -62
  191. data/spec/alexandria/utilities_spec.rb +0 -52
  192. data/tasks/dogtail.rake +0 -6
@@ -4,36 +4,36 @@
4
4
  #
5
5
  # See the file README.md for authorship and licensing information.
6
6
 
7
- require 'spec_helper'
7
+ require "spec_helper"
8
8
 
9
9
  RSpec.describe Alexandria::SmartLibrary do
10
- it 'can be instantiated simply' do
11
- lib = described_class.new('Hello', [], :all)
12
- expect(lib.name).to eq 'Hello'
10
+ it "can be instantiated simply" do
11
+ lib = described_class.new("Hello", [], :all)
12
+ expect(lib.name).to eq "Hello"
13
13
  end
14
14
 
15
- describe '#name' do
16
- it 'normalizes the encoding' do
17
- bad_name = (+'Prêts').force_encoding('ascii')
15
+ describe "#name" do
16
+ it "normalizes the encoding" do
17
+ bad_name = (+"Prêts").force_encoding("ascii")
18
18
  lib = described_class.new(bad_name, [], :all)
19
- expect(lib.name.encoding.name).to eq 'UTF-8'
20
- expect(bad_name.encoding.name).to eq 'US-ASCII'
19
+ expect(lib.name.encoding.name).to eq "UTF-8"
20
+ expect(bad_name.encoding.name).to eq "US-ASCII"
21
21
  end
22
22
  end
23
23
 
24
- describe '#update' do
25
- let(:lib) { described_class.new('Hello', [], :all) }
24
+ describe "#update" do
25
+ let(:lib) { described_class.new("Hello", [], :all) }
26
26
 
27
- it 'works when given no parameters' do
27
+ it "works when given no parameters" do
28
28
  lib.update
29
29
  end
30
30
 
31
- it 'works when given a LibraryCollection' do
31
+ it "works when given a LibraryCollection" do
32
32
  lib.update Alexandria::LibraryCollection.instance
33
33
  end
34
34
 
35
- it 'works when given a Library' do
36
- lib.update Alexandria::Library.new('Hi')
35
+ it "works when given a Library" do
36
+ lib.update Alexandria::Library.new("Hi")
37
37
  end
38
38
  end
39
39
  end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file is part of Alexandria.
4
+ #
5
+ # See the file README.md for authorship and licensing information.
6
+
7
+ require_relative "../../spec_helper"
8
+
9
+ describe Alexandria::UI::AboutDialog do
10
+ it "works" do
11
+ parent = Gtk::Window.new :toplevel
12
+ described_class.new parent
13
+ end
14
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file is part of Alexandria.
4
+ #
5
+ # See the file README.md for authorship and licensing information.
6
+
7
+ require_relative "../../spec_helper"
8
+
9
+ describe Alexandria::UI::AcquireDialog do
10
+ it "works" do
11
+ parent = Gtk::Window.new :toplevel
12
+ described_class.new parent
13
+ end
14
+ end
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file is part of Alexandria.
4
+ #
5
+ # See the file README.md for authorship and licensing information.
6
+
7
+ require_relative "../../spec_helper"
8
+
9
+ describe Alexandria::UI::AlertDialog do
10
+ it "works" do
11
+ parent = Gtk::Window.new :toplevel
12
+ described_class.new(parent, "Hello",
13
+ Gtk::Stock::DIALOG_QUESTION,
14
+ [[Gtk::Stock::CANCEL, :cancel]], "Hi there")
15
+ end
16
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file is part of Alexandria.
4
+ #
5
+ # See the file README.md for authorship and licensing information.
6
+
7
+ require_relative "../../spec_helper"
8
+
9
+ describe Alexandria::UI::BadIsbnsDialog do
10
+ it "works" do
11
+ parent = Gtk::Window.new :toplevel
12
+ described_class.new parent, "Careful", []
13
+ end
14
+ end
@@ -0,0 +1,59 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file is part of Alexandria.
4
+ #
5
+ # See the file README.md for authorship and licensing information.
6
+
7
+ require_relative "../../spec_helper"
8
+
9
+ describe Alexandria::UI::BookPropertiesDialog do
10
+ let(:parent) { Gtk::Window.new :toplevel }
11
+ let(:library) do
12
+ store = Alexandria::LibraryCollection.instance.library_store
13
+ store.load_library("Bar Library")
14
+ end
15
+ let(:book) do
16
+ Alexandria::Book.new("Foo Book", ["Jane Doe"], "98765432", "Bar Publisher",
17
+ 1972, "edition")
18
+ end
19
+
20
+ before do
21
+ library << book
22
+ end
23
+
24
+ it "works" do
25
+ described_class.new parent, library, book
26
+ end
27
+
28
+ describe "#on_change_cover" do
29
+ let(:dialog) { described_class.new parent, library, book }
30
+ let(:filechooser) { instance_double(Gtk::FileChooserDialog).as_null_object }
31
+
32
+ before do
33
+ allow(Gtk::FileChooserDialog).to receive(:new).and_return(filechooser)
34
+ allow(filechooser).to receive(:filename)
35
+ .and_return File.join(__dir__, "../../fixtures/cover.jpg")
36
+ end
37
+
38
+ it "works when response is accept" do
39
+ allow(filechooser)
40
+ .to receive(:run).and_return(Gtk::ResponseType::ACCEPT)
41
+
42
+ dialog.on_change_cover
43
+ end
44
+
45
+ it "works when response is reject" do
46
+ allow(filechooser)
47
+ .to receive(:run).and_return(Gtk::ResponseType::REJECT)
48
+
49
+ dialog.on_change_cover
50
+ end
51
+
52
+ it "works when response is cancel" do
53
+ allow(filechooser)
54
+ .to receive(:run).and_return(Gtk::ResponseType::CANCEL)
55
+
56
+ dialog.on_change_cover
57
+ end
58
+ end
59
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file is part of Alexandria.
4
+ #
5
+ # See the file README.md for authorship and licensing information.
6
+
7
+ require_relative "../../spec_helper"
8
+
9
+ describe Alexandria::UI::ConfirmEraseDialog do
10
+ it "works" do
11
+ parent = Gtk::Window.new :toplevel
12
+ described_class.new parent, "foo-file"
13
+ end
14
+ end
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file is part of Alexandria.
4
+ #
5
+ # See the file README.md for authorship and licensing information.
6
+
7
+ require_relative "../../spec_helper"
8
+
9
+ describe Alexandria::UI::ConflictWhileCopyingDialog do
10
+ it "works" do
11
+ parent = Gtk::Window.new :toplevel
12
+ library = instance_double(Alexandria::Library, name: "Bar Library")
13
+ book = instance_double(Alexandria::Book, title: "Foo Book")
14
+ described_class.new parent, library, book
15
+ end
16
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file is part of Alexandria.
4
+ #
5
+ # See the file README.md for authorship and licensing information.
6
+
7
+ require_relative "../../spec_helper"
8
+
9
+ describe Alexandria::UI::ErrorDialog do
10
+ it "works" do
11
+ parent = Gtk::Window.new :toplevel
12
+ described_class.new parent, "Boom", "It went boom"
13
+ end
14
+ end
@@ -0,0 +1,36 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file is part of Alexandria.
4
+ #
5
+ # See the file README.md for authorship and licensing information.
6
+
7
+ require_relative "../../spec_helper"
8
+
9
+ describe Alexandria::UI::ExportDialog do
10
+ let(:parent) { Gtk::Window.new :toplevel }
11
+ let(:library) { Alexandria::Library.new "Bar Library" }
12
+ let(:sort_order) { Alexandria::LibrarySortOrder::Unsorted.new }
13
+
14
+ it "works" do
15
+ described_class.new parent, library, sort_order
16
+ end
17
+
18
+ describe "#perform" do
19
+ let(:export_dialog) { described_class.new parent, library, sort_order }
20
+ let(:chooser) { export_dialog.dialog }
21
+
22
+ it "works when response is cancel" do
23
+ allow(chooser).to receive(:run).and_return(Gtk::ResponseType::CANCEL)
24
+ export_dialog.perform
25
+ end
26
+
27
+ it "works when response is OK" do
28
+ dir = Dir.mktmpdir
29
+ allow(chooser).to receive(:run).and_return(Gtk::ResponseType::OK)
30
+ allow(chooser).to receive(:filename).and_return File.join(dir, "export")
31
+ export_dialog.perform
32
+ ensure
33
+ FileUtils.remove_entry dir
34
+ end
35
+ end
36
+ end
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file is part of Alexandria.
4
+ #
5
+ # See the file README.md for authorship and licensing information.
6
+
7
+ require "spec_helper"
8
+
9
+ RSpec.describe Alexandria::UI::Icons do
10
+ describe ".tag_icon" do
11
+ let(:loader) { Alexandria::LibraryStore.new(TESTDIR) }
12
+ let(:lib_version) { File.join(LIBDIR, "0.6.2") }
13
+
14
+ before do
15
+ FileUtils.cp_r(lib_version, TESTDIR)
16
+ end
17
+
18
+ it "returns a pixbuf" do
19
+ library = loader.load_all_libraries.first
20
+ icon = described_class.cover(library, library.first)
21
+
22
+ tagged_icon = described_class.tag_icon(icon, described_class::FAVORITE_TAG)
23
+ expect(tagged_icon).to be_a GdkPixbuf::Pixbuf
24
+ end
25
+ end
26
+ end
@@ -1,29 +1,15 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (C) 2008 Joseph Method
4
- # Copyright (C) 2014 Matijs van Zuijlen
3
+ # This file is part of Alexandria.
5
4
  #
6
- # Alexandria is free software; you can redistribute it and/or
7
- # modify it under the terms of the GNU General Public License as
8
- # published by the Free Software Foundation; either version 2 of the
9
- # License, or (at your option) any later version.
10
- #
11
- # Alexandria is distributed in the hope that it will be useful,
12
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
- # General Public License for more details.
15
- #
16
- # You should have received a copy of the GNU General Public
17
- # License along with Alexandria; see the file COPYING. If not,
18
- # write to the Free Software Foundation, Inc., 51 Franklin Street,
19
- # Fifth Floor, Boston, MA 02110-1301 USA.
5
+ # See the file README.md for authorship and licensing information.
20
6
 
21
- require File.dirname(__FILE__) + '/../../spec_helper'
7
+ require_relative "../../spec_helper"
22
8
 
23
9
  describe Alexandria::UI::IconViewManager do
24
- it 'should work' do
25
- iconview = double(Gtk::IconView).as_null_object
26
- parent = double(Object, iconview: iconview).as_null_object
27
- Alexandria::UI::IconViewManager.new iconview, parent
10
+ it "works" do
11
+ iconview = instance_double(Gtk::IconView).as_null_object
12
+ parent = instance_double(Alexandria::UI::UIManager, iconview: iconview).as_null_object
13
+ described_class.new iconview, parent
28
14
  end
29
15
  end
@@ -0,0 +1,46 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file is part of Alexandria.
4
+ #
5
+ # See the file README.md for authorship and licensing information.
6
+
7
+ require_relative "../../spec_helper"
8
+
9
+ describe Alexandria::UI::ImportDialog do
10
+ let(:parent) { Gtk::Window.new :toplevel }
11
+
12
+ it "can be instantiated" do
13
+ described_class.new parent
14
+ end
15
+
16
+ it "handles a selection change" do
17
+ importdialog = described_class.new parent
18
+ importdialog.dialog.signal_emit "selection_changed"
19
+ end
20
+
21
+ describe "#acquire" do
22
+ let(:import_dialog) { described_class.new parent }
23
+ let(:chooser) { import_dialog.dialog }
24
+
25
+ before do
26
+ allow(chooser).to receive(:filename).and_return("spec/data/isbns.txt")
27
+ allow(Alexandria::BookProviders).to receive(:isbn_search)
28
+ .and_raise Alexandria::BookProviders::SearchEmptyError
29
+ allow(Alexandria::BookProviders).to receive(:isbn_search).with("0595371086")
30
+ .and_return(an_artist_of_the_floating_world)
31
+ end
32
+
33
+ it "works when response is cancel" do
34
+ allow(chooser).to receive(:run).and_return(Gtk::ResponseType::CANCEL)
35
+ import_dialog.acquire {}
36
+ end
37
+
38
+ it "works when response is OK" do
39
+ allow(chooser).to receive(:run).and_return(Gtk::ResponseType::OK)
40
+
41
+ result = nil
42
+ import_dialog.acquire { |*args| result = args }
43
+ expect(result.first.to_a).to eq [an_artist_of_the_floating_world]
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file is part of Alexandria.
4
+ #
5
+ # See the file README.md for authorship and licensing information.
6
+
7
+ require_relative "../../spec_helper"
8
+
9
+ describe Alexandria::UI::KeepBadISBNDialog do
10
+ it "works" do
11
+ parent = Gtk::Window.new :toplevel
12
+ book = instance_double(Alexandria::Book,
13
+ title: "Foo Book",
14
+ isbn: "98765432")
15
+ described_class.new parent, book
16
+ end
17
+ end
@@ -1,44 +1,17 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (C) 2007 Joseph Method
4
- # Copyright (C) 2007 Cathal Mc Ginley
5
- # Copyright (C) 2011, 2014-2016 Matijs van Zuijlen
6
- #
7
- # Alexandria is free software; you can redistribute it and/or
8
- # modify it under the terms of the GNU General Public License as
9
- # published by the Free Software Foundation; either version 2 of the
10
- # License, or (at your option) any later version.
11
- #
12
- # Alexandria is distributed in the hope that it will be useful,
13
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
- # General Public License for more details.
16
- #
17
- # You should have received a copy of the GNU General Public
18
- # License along with Alexandria; see the file COPYING. If not,
19
- # write to the Free Software Foundation, Inc., 51 Franklin Street,
20
- # Fifth Floor, Boston, MA 02110-1301 USA.
21
-
22
- require File.dirname(__FILE__) + '/../../spec_helper'
23
-
24
- # break this up!
25
-
26
- describe CellRendererToggle do
27
- it 'should work'
28
- end
3
+ # frozen_string_literal: true
29
4
 
30
- describe Gtk::ActionGroup do
31
- it 'should work'
32
- end
5
+ # This file is part of Alexandria.
6
+ #
7
+ # See the file README.md for authorship and licensing information.
33
8
 
34
- describe Gtk::IconView do
35
- it 'should work'
36
- end
9
+ require_relative "../../spec_helper"
37
10
 
38
11
  describe Alexandria::UI::MainApp do
39
- it 'should be a singleton' do
12
+ it "is a singleton" do
40
13
  expect do
41
- Alexandria::UI::MainApp.new
14
+ described_class.new
42
15
  end.to raise_error NoMethodError
43
16
  end
44
17
  end