alexandria-book-collection-manager 0.7.1 → 0.7.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (210) hide show
  1. checksums.yaml +5 -5
  2. data/.github/dependabot.yml +9 -0
  3. data/.gitignore +5 -2
  4. data/.hound.yml +2 -0
  5. data/.rubocop.yml +113 -45
  6. data/.rubocop_todo.yml +82 -170
  7. data/.simplecov +5 -1
  8. data/.travis.yml +45 -0
  9. data/.yardopts +1 -1
  10. data/CHANGELOG.md +60 -0
  11. data/ChangeLog.0 +33 -35
  12. data/Gemfile +6 -5
  13. data/INSTALL.md +164 -0
  14. data/README.md +52 -42
  15. data/Rakefile +95 -109
  16. data/TODO.md +9 -1
  17. data/alexandria-book-collection-manager.gemspec +52 -45
  18. data/bin/alexandria +31 -53
  19. data/doc/AUTHORS +61 -0
  20. data/doc/BUGS +31 -0
  21. data/doc/FAQ +365 -0
  22. data/doc/HACKING +19 -0
  23. data/doc/NEWS +341 -0
  24. data/doc/alexandria.1 +120 -0
  25. data/doc/cuecat_support.rdoc +67 -0
  26. data/doc/dependency_decisions.yml +80 -0
  27. data/lib/alexandria.rb +29 -37
  28. data/lib/alexandria/about.rb +52 -51
  29. data/lib/alexandria/book_providers.rb +94 -101
  30. data/lib/alexandria/book_providers/adlibris.rb +45 -85
  31. data/lib/alexandria/book_providers/amazon_aws.rb +105 -113
  32. data/lib/alexandria/book_providers/amazon_ecs_util.rb +293 -324
  33. data/lib/alexandria/book_providers/barnes_and_noble.rb +54 -53
  34. data/lib/alexandria/book_providers/douban.rb +29 -51
  35. data/lib/alexandria/book_providers/proxis.rb +42 -59
  36. data/lib/alexandria/book_providers/pseudomarc.rb +79 -99
  37. data/lib/alexandria/book_providers/siciliano.rb +68 -70
  38. data/lib/alexandria/book_providers/thalia.rb +46 -45
  39. data/lib/alexandria/book_providers/web.rb +17 -33
  40. data/lib/alexandria/book_providers/worldcat.rb +74 -102
  41. data/lib/alexandria/book_providers/z3950.rb +170 -174
  42. data/lib/alexandria/config.rb +5 -3
  43. data/lib/alexandria/console.rb +10 -21
  44. data/lib/alexandria/default_preferences.rb +37 -0
  45. data/lib/alexandria/execution_queue.rb +17 -15
  46. data/lib/alexandria/export_format.rb +47 -0
  47. data/lib/alexandria/export_library.rb +188 -302
  48. data/lib/alexandria/import_library.rb +114 -155
  49. data/lib/alexandria/import_library_csv.rb +46 -96
  50. data/lib/alexandria/library_collection.rb +79 -0
  51. data/lib/alexandria/library_sort_order.rb +45 -0
  52. data/lib/alexandria/library_store.rb +233 -0
  53. data/lib/alexandria/logging.rb +15 -19
  54. data/lib/alexandria/models/book.rb +15 -20
  55. data/lib/alexandria/models/library.rb +81 -363
  56. data/lib/alexandria/net.rb +7 -6
  57. data/lib/alexandria/preferences.rb +73 -91
  58. data/lib/alexandria/scanners.rb +4 -2
  59. data/lib/alexandria/scanners/{cuecat.rb → cue_cat.rb} +24 -20
  60. data/lib/alexandria/scanners/keyboard.rb +10 -8
  61. data/lib/alexandria/smart_library.rb +135 -171
  62. data/lib/alexandria/ui.rb +17 -15
  63. data/lib/alexandria/ui/about_dialog.rb +49 -0
  64. data/lib/alexandria/ui/{dialogs/acquire_dialog.rb → acquire_dialog.rb} +129 -152
  65. data/lib/alexandria/ui/alert_dialog.rb +64 -0
  66. data/lib/alexandria/ui/bad_isbns_dialog.rb +41 -0
  67. data/lib/alexandria/ui/{dialogs/barcode_animation.rb → barcode_animation.rb} +18 -15
  68. data/lib/alexandria/ui/{dialogs/book_properties_dialog.rb → book_properties_dialog.rb} +44 -61
  69. data/lib/alexandria/ui/{dialogs/book_properties_dialog_base.rb → book_properties_dialog_base.rb} +84 -89
  70. data/lib/alexandria/ui/builder_base.rb +9 -27
  71. data/lib/alexandria/ui/callbacks.rb +188 -186
  72. data/lib/alexandria/ui/columns.rb +2 -0
  73. data/lib/alexandria/ui/completion_models.rb +12 -23
  74. data/lib/alexandria/ui/confirm_erase_dialog.rb +33 -0
  75. data/lib/alexandria/ui/conflict_while_copying_dialog.rb +34 -0
  76. data/lib/alexandria/ui/dndable.rb +10 -8
  77. data/lib/alexandria/ui/error_dialog.rb +25 -0
  78. data/lib/alexandria/ui/export_dialog.rb +139 -0
  79. data/lib/alexandria/ui/icons.rb +49 -65
  80. data/lib/alexandria/ui/iconview.rb +15 -13
  81. data/lib/alexandria/ui/iconview_tooltips.rb +43 -58
  82. data/lib/alexandria/ui/import_dialog.rb +157 -0
  83. data/lib/alexandria/ui/init.rb +23 -33
  84. data/lib/alexandria/ui/keep_bad_isbn_dialog.rb +36 -0
  85. data/lib/alexandria/ui/libraries_combo.rb +18 -14
  86. data/lib/alexandria/ui/listview.rb +77 -88
  87. data/lib/alexandria/ui/main_app.rb +26 -26
  88. data/lib/alexandria/ui/misc_dialogs.rb +10 -0
  89. data/lib/alexandria/ui/multi_drag_treeview.rb +30 -41
  90. data/lib/alexandria/ui/{dialogs/new_book_dialog.rb → new_book_dialog.rb} +168 -215
  91. data/lib/alexandria/ui/new_book_dialog_manual.rb +139 -0
  92. data/lib/alexandria/ui/new_provider_dialog.rb +100 -0
  93. data/lib/alexandria/ui/new_smart_library_dialog.rb +74 -0
  94. data/lib/alexandria/ui/preferences_dialog.rb +313 -0
  95. data/lib/alexandria/ui/provider_preferences_base_dialog.rb +95 -0
  96. data/lib/alexandria/ui/provider_preferences_dialog.rb +35 -0
  97. data/lib/alexandria/ui/really_delete_dialog.rb +53 -0
  98. data/lib/alexandria/ui/{sidepane.rb → sidepane_manager.rb} +62 -72
  99. data/lib/alexandria/ui/skip_entry_dialog.rb +33 -0
  100. data/lib/alexandria/ui/smart_library_properties_dialog.rb +60 -0
  101. data/lib/alexandria/ui/{dialogs/smart_library_properties_dialog_base.rb → smart_library_properties_dialog_base.rb} +96 -172
  102. data/lib/alexandria/ui/smart_library_rule_box.rb +119 -0
  103. data/lib/alexandria/ui/sound.rb +13 -13
  104. data/lib/alexandria/ui/ui_manager.rb +262 -283
  105. data/lib/alexandria/undo_manager.rb +3 -0
  106. data/lib/alexandria/version.rb +6 -19
  107. data/lib/alexandria/web_themes.rb +24 -21
  108. data/po/Makefile +2 -2
  109. data/po/cs.po +993 -880
  110. data/po/cy.po +957 -874
  111. data/po/de.po +990 -869
  112. data/po/el.po +989 -869
  113. data/po/es.po +985 -865
  114. data/po/fr.po +986 -870
  115. data/po/ga.po +907 -823
  116. data/po/gl.po +981 -865
  117. data/po/it.po +986 -868
  118. data/po/ja.po +969 -853
  119. data/po/mk.po +983 -863
  120. data/po/nb.po +979 -863
  121. data/po/nl.po +983 -864
  122. data/po/pl.po +1020 -969
  123. data/po/pt.po +988 -861
  124. data/po/pt_BR.po +984 -868
  125. data/po/ru.po +992 -873
  126. data/po/sk.po +987 -869
  127. data/po/sv.po +977 -861
  128. data/po/uk.po +975 -865
  129. data/po/zh_TW.po +976 -860
  130. data/schemas/alexandria.schemas +25 -3
  131. data/share/alexandria/glade/acquire_dialog__builder.glade +15 -12
  132. data/share/alexandria/glade/book_properties_dialog__builder.glade +171 -299
  133. data/share/alexandria/glade/main_app__builder.glade +24 -33
  134. data/share/alexandria/glade/new_book_dialog__builder.glade +27 -59
  135. data/share/alexandria/glade/preferences_dialog__builder.glade +250 -290
  136. data/share/gnome/help/alexandria/C/introduction.xml +0 -8
  137. data/share/gnome/help/alexandria/C/searching.xml +1 -1
  138. data/share/gnome/help/alexandria/C/smart-libraries.xml +2 -2
  139. data/share/gnome/help/alexandria/C/working-with-libraries.xml +1 -1
  140. data/share/gnome/help/alexandria/fr/alexandria.xml +1 -1
  141. data/share/gnome/help/alexandria/ja/introduction.xml +0 -8
  142. data/share/gnome/help/alexandria/ja/smart-libraries.xml +1 -1
  143. data/spec/alexandria/book_providers/world_cat_provider_spec.rb +160 -0
  144. data/spec/alexandria/book_providers_spec.rb +77 -210
  145. data/spec/alexandria/book_spec.rb +16 -12
  146. data/spec/alexandria/console_spec.rb +27 -0
  147. data/spec/alexandria/export_library_spec.rb +130 -0
  148. data/spec/alexandria/library_spec.rb +130 -172
  149. data/spec/alexandria/library_store_spec.rb +37 -0
  150. data/spec/alexandria/preferences_spec.rb +46 -17
  151. data/spec/alexandria/scanners/cue_cat_spec.rb +52 -0
  152. data/spec/alexandria/smart_library_spec.rb +32 -25
  153. data/spec/alexandria/ui/about_dialog_spec.rb +14 -0
  154. data/spec/alexandria/ui/acquire_dialog_spec.rb +14 -0
  155. data/spec/alexandria/ui/alert_dialog_spec.rb +16 -0
  156. data/spec/alexandria/ui/bad_isbns_dialog_spec.rb +14 -0
  157. data/spec/alexandria/ui/book_properties_dialog_spec.rb +17 -0
  158. data/spec/alexandria/ui/confirm_erase_dialog_spec.rb +14 -0
  159. data/spec/alexandria/ui/conflict_while_copying_dialog_spec.rb +16 -0
  160. data/spec/alexandria/ui/error_dialog_spec.rb +14 -0
  161. data/spec/alexandria/ui/export_dialog_spec.rb +15 -0
  162. data/spec/alexandria/ui/icons_spec.rb +26 -0
  163. data/spec/alexandria/ui/iconview_spec.rb +9 -21
  164. data/spec/alexandria/ui/import_dialog_spec.rb +41 -0
  165. data/spec/alexandria/ui/keep_bad_isbn_dialog_spec.rb +17 -0
  166. data/spec/alexandria/ui/main_app_spec.rb +8 -33
  167. data/spec/alexandria/ui/new_book_dialog_manual_spec.rb +15 -0
  168. data/spec/alexandria/ui/new_book_dialog_spec.rb +22 -0
  169. data/spec/alexandria/ui/new_provider_dialog_spec.rb +30 -0
  170. data/spec/alexandria/ui/new_smart_library_dialog_spec.rb +39 -0
  171. data/spec/alexandria/ui/preferences_dialog_spec.rb +14 -0
  172. data/spec/alexandria/ui/provider_preferences_dialog_spec.rb +34 -0
  173. data/spec/alexandria/ui/really_delete_dialog_spec.rb +16 -0
  174. data/spec/alexandria/ui/sidepane_manager_spec.rb +15 -0
  175. data/spec/alexandria/ui/skip_entry_dialog_spec.rb +14 -0
  176. data/spec/alexandria/ui/smart_library_properties_dialog_spec.rb +32 -0
  177. data/spec/alexandria/ui/sound_spec.rb +4 -2
  178. data/spec/alexandria/ui/ui_manager_spec.rb +45 -20
  179. data/spec/end_to_end/basic_run_spec.rb +57 -0
  180. data/spec/spec_helper.rb +66 -33
  181. data/tasks/setup.rb +5 -3
  182. data/tasks/spec.rake +18 -3
  183. data/util/rake/fileinstall.rb +38 -40
  184. data/util/rake/gettextgenerate.rb +15 -70
  185. data/util/rake/omfgenerate.rb +10 -10
  186. metadata +176 -60
  187. data/INSTALL.rdoc +0 -148
  188. data/dogtail/basic_run_test.py +0 -9
  189. data/lib/alexandria/book_providers/bol_it.rb +0 -160
  190. data/lib/alexandria/book_providers/deastore.rb +0 -273
  191. data/lib/alexandria/book_providers/ibs_it.rb +0 -147
  192. data/lib/alexandria/book_providers/mcu.rb +0 -169
  193. data/lib/alexandria/book_providers/renaud.rb +0 -140
  194. data/lib/alexandria/book_providers/webster_it.rb +0 -167
  195. data/lib/alexandria/ui/dialogs/about_dialog.rb +0 -59
  196. data/lib/alexandria/ui/dialogs/alert_dialog.rb +0 -70
  197. data/lib/alexandria/ui/dialogs/bad_isbns_dialog.rb +0 -43
  198. data/lib/alexandria/ui/dialogs/export_dialog.rb +0 -171
  199. data/lib/alexandria/ui/dialogs/import_dialog.rb +0 -196
  200. data/lib/alexandria/ui/dialogs/misc_dialogs.rb +0 -85
  201. data/lib/alexandria/ui/dialogs/new_book_dialog_manual.rb +0 -154
  202. data/lib/alexandria/ui/dialogs/new_smart_library_dialog.rb +0 -74
  203. data/lib/alexandria/ui/dialogs/preferences_dialog.rb +0 -578
  204. data/lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb +0 -57
  205. data/spec/alexandria/scanners/cuecat_spec.rb +0 -65
  206. data/spec/alexandria/ui/dialogs_spec.rb +0 -94
  207. data/spec/alexandria/ui/sidepane_spec.rb +0 -27
  208. data/spec/alexandria/ui/ui_utilities_spec.rb +0 -60
  209. data/spec/alexandria/utilities_spec.rb +0 -50
  210. data/tasks/dogtail.rake +0 -4
@@ -0,0 +1,37 @@
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::LibraryStore do
10
+ let(:loader) { described_class.new(TESTDIR) }
11
+
12
+ describe "#load_all_smart_libraries" do
13
+ context "when none exist" do
14
+ it "creates and saves some" do
15
+ smart_libs = loader.load_all_smart_libraries
16
+ aggregate_failures do
17
+ expect(smart_libs.size).to eq 5
18
+ smart_libs.each do |lib|
19
+ expect(File.exist?(lib.yaml)).to be_truthy
20
+ end
21
+ end
22
+ end
23
+ end
24
+
25
+ context "when one exists" do
26
+ it "returns the existing smart library" do
27
+ existing = Alexandria::SmartLibrary.new("Hi", [], :all, loader)
28
+ existing.save
29
+ smart_libs = loader.load_all_smart_libraries
30
+ aggregate_failures do
31
+ expect(smart_libs.size).to eq 1
32
+ expect(smart_libs.first.yaml).to eq existing.yaml
33
+ end
34
+ end
35
+ end
36
+ end
37
+ end
@@ -1,22 +1,51 @@
1
- # Copyright (C) 2007 Joseph Method
2
- #
3
- # Alexandria is free software; you can redistribute it and/or
4
- # modify it under the terms of the GNU General Public License as
5
- # published by the Free Software Foundation; either version 2 of the
6
- # License, or (at your option) any later version.
7
- #
8
- # Alexandria is distributed in the hope that it will be useful,
9
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
10
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11
- # General Public License for more details.
1
+ # frozen_string_literal: true
2
+
3
+ # This file is part of Alexandria.
12
4
  #
13
- # You should have received a copy of the GNU General Public
14
- # License along with Alexandria; see the file COPYING. If not,
15
- # write to the Free Software Foundation, Inc., 51 Franklin Street,
16
- # Fifth Floor, Boston, MA 02110-1301 USA.
5
+ # See the file README.md for authorship and licensing information.
17
6
 
18
- require File.dirname(__FILE__) + '/../spec_helper'
7
+ require_relative "../spec_helper"
19
8
 
20
9
  describe Alexandria::Preferences do
21
- it 'should work'
10
+ let(:instance) { described_class.instance }
11
+
12
+ describe "#get_variable" do
13
+ it "returns nil fetching unknown setting" do
14
+ expect(instance.get_variable("does_not_exist")).to eq nil
15
+ end
16
+
17
+ it "allows fetching by string" do
18
+ instance.toolbar_visible = false
19
+ expect(instance.get_variable("toolbar_visible")).to eq false
20
+ end
21
+
22
+ it "allows fetching by symbol" do
23
+ instance.toolbar_visible = true
24
+ expect(instance.get_variable(:toolbar_visible)).to eq true
25
+ end
26
+ end
27
+
28
+ describe "#set_variable" do
29
+ it "allows setting by string" do
30
+ instance.toolbar_visible = false
31
+ instance.set_variable("toolbar_visible", true)
32
+ expect(instance.toolbar_visible).to eq true
33
+ end
34
+
35
+ it "allows setting by symbol" do
36
+ instance.toolbar_visible = false
37
+ instance.set_variable(:toolbar_visible, true)
38
+ expect(instance.toolbar_visible).to eq true
39
+ end
40
+ end
41
+
42
+ it "allows setting known setting to false" do
43
+ instance.toolbar_visible = false
44
+ expect(instance.toolbar_visible).to eq false
45
+ end
46
+
47
+ it "resets known setting by setting to nil" do
48
+ instance.toolbar_visible = nil
49
+ expect(instance.toolbar_visible).to eq true
50
+ end
22
51
  end
@@ -0,0 +1,52 @@
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::Scanners::CueCat do
10
+ let(:cuecat) { described_class.new }
11
+ let(:partials) do
12
+ [".",
13
+ ".C3nZC3nZC3n2ChnWENz7DxnY",
14
+ ".C3nZC3nZC3n2ChnWENz7DxnY.",
15
+ ".C3nZC3nZC3n2ChnWENz7DxnY.cGen",
16
+ ".C3nZC3nZC3n2ChnWENz7DxnY.cGen.",
17
+ ".C3nZC3nZC3n2ChnWENz7DxnY.cGen.ENr7C3z0CNj3Dhj1EW"]
18
+ end
19
+ let(:scans) do
20
+ {
21
+ isbn: ".C3nZC3nZC3n2ChnWENz7DxnY.cGen.ENr7C3z0CNj3Dhj1EW.",
22
+ ib5: ".C3nZC3nZC3n2ChnWENz7DxnY.cGf2.ENr7C3z0DNn0ENnWE3nZDhP6."
23
+ }
24
+ end
25
+
26
+ it "is called CueCat" do
27
+ expect(cuecat.name).to match(/CueCat/i)
28
+ end
29
+
30
+ it "detects a complete scan only" do
31
+ partials.each { |scan| expect(cuecat.match?(scan)).not_to be_truthy }
32
+ expect(cuecat.match?(scans[:isbn])).to be_truthy
33
+ expect(cuecat.match?(scans[:ib5])).to be_truthy
34
+ end
35
+
36
+ it "decodes ISBN barcodes" do
37
+ expect(cuecat.decode(scans[:isbn])).to eq("9780571147168")
38
+ end
39
+
40
+ it "decodes ISBN+5 barcodes" do
41
+ expect(cuecat.decode(scans[:ib5])).to eq("9780575079038") # 00799
42
+ # TODO are we supposed to keep the +5 bit?
43
+ end
44
+
45
+ it "decodes ISSN barcodes" do
46
+ skip "Test scan ISSN"
47
+ end
48
+
49
+ it "decodes UPC barcodes" do
50
+ skip "Test scan UPC"
51
+ end
52
+ end
@@ -1,32 +1,39 @@
1
- # Copyright (C) 2007 Joseph Method
2
- #
3
- # Alexandria is free software; you can redistribute it and/or
4
- # modify it under the terms of the GNU General Public License as
5
- # published by the Free Software Foundation; either version 2 of the
6
- # License, or (at your option) any later version.
7
- #
8
- # Alexandria is distributed in the hope that it will be useful,
9
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
10
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11
- # General Public License for more details.
1
+ # frozen_string_literal: true
2
+
3
+ # This file is part of Alexandria.
12
4
  #
13
- # You should have received a copy of the GNU General Public
14
- # License along with Alexandria; see the file COPYING. If not,
15
- # write to the Free Software Foundation, Inc., 51 Franklin Street,
16
- # Fifth Floor, Boston, MA 02110-1301 USA.
5
+ # See the file README.md for authorship and licensing information.
6
+
7
+ require "spec_helper"
17
8
 
18
- require File.dirname(__FILE__) + '/../spec_helper'
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"
13
+ end
19
14
 
20
- describe Alexandria::SmartLibrary do
21
- it 'can be instantiated simply' do
22
- lib = described_class.new('Hello', [], :all)
23
- expect(lib.name).to eq 'Hello'
15
+ describe "#name" do
16
+ it "normalizes the encoding" do
17
+ bad_name = (+"Prêts").force_encoding("ascii")
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"
21
+ end
24
22
  end
25
23
 
26
- it 'normalizes the encoding for name' do
27
- bad_name = 'Prêts'.force_encoding('ascii')
28
- lib = described_class.new(bad_name, [], :all)
29
- expect(lib.name.encoding.name).to eq 'UTF-8'
30
- expect(bad_name.encoding.name).to eq 'US-ASCII'
24
+ describe "#update" do
25
+ let(:lib) { described_class.new("Hello", [], :all) }
26
+
27
+ it "works when given no parameters" do
28
+ lib.update
29
+ end
30
+
31
+ it "works when given a LibraryCollection" do
32
+ lib.update Alexandria::LibraryCollection.instance
33
+ end
34
+
35
+ it "works when given a Library" do
36
+ lib.update Alexandria::Library.new("Hi")
37
+ end
31
38
  end
32
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,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::BookPropertiesDialog do
10
+ it "works" do
11
+ parent = Gtk::Window.new :toplevel
12
+ library = instance_double(Alexandria::Library, name: "Bar Library", cover: "")
13
+ book = Alexandria::Book.new("Foo Book", ["Jane Doe"], "98765432", "Bar Publisher",
14
+ 1972, "edition")
15
+ described_class.new parent, library, book
16
+ end
17
+ 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,15 @@
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
+ it "works" do
11
+ parent = Gtk::Window.new :toplevel
12
+ library = instance_double(Alexandria::Library, name: "Bar Library")
13
+ described_class.new parent, library, :ascending
14
+ end
15
+ 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,27 +1,15 @@
1
- # Copyright (C) 2008 Joseph Method
2
- # Copyright (C) 2014 Matijs van Zuijlen
3
- #
4
- # Alexandria is free software; you can redistribute it and/or
5
- # modify it under the terms of the GNU General Public License as
6
- # published by the Free Software Foundation; either version 2 of the
7
- # License, or (at your option) any later version.
8
- #
9
- # Alexandria is distributed in the hope that it will be useful,
10
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
11
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12
- # General Public License for more details.
1
+ # frozen_string_literal: true
2
+
3
+ # This file is part of Alexandria.
13
4
  #
14
- # You should have received a copy of the GNU General Public
15
- # License along with Alexandria; see the file COPYING. If not,
16
- # write to the Free Software Foundation, Inc., 51 Franklin Street,
17
- # Fifth Floor, Boston, MA 02110-1301 USA.
5
+ # See the file README.md for authorship and licensing information.
18
6
 
19
- require File.dirname(__FILE__) + '/../../spec_helper'
7
+ require_relative "../../spec_helper"
20
8
 
21
9
  describe Alexandria::UI::IconViewManager do
22
- it 'should work' do
23
- iconview = double(Gtk::IconView).as_null_object
24
- parent = double(Object, iconview: iconview).as_null_object
25
- 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
26
14
  end
27
15
  end
@@ -0,0 +1,41 @@
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
+ describe "#acquire" do
17
+ let(:import_dialog) { described_class.new parent }
18
+ let(:chooser) { import_dialog.dialog }
19
+
20
+ before do
21
+ allow(chooser).to receive(:filename).and_return("spec/data/isbns.txt")
22
+ allow(Alexandria::BookProviders).to receive(:isbn_search)
23
+ .and_raise Alexandria::BookProviders::SearchEmptyError
24
+ allow(Alexandria::BookProviders).to receive(:isbn_search).with("0595371086")
25
+ .and_return(an_artist_of_the_floating_world)
26
+ end
27
+
28
+ it "works when response is cancel" do
29
+ allow(chooser).to receive(:run).and_return(Gtk::ResponseType::CANCEL)
30
+ import_dialog.acquire {}
31
+ end
32
+
33
+ it "works when response is OK" do
34
+ allow(chooser).to receive(:run).and_return(Gtk::ResponseType::OK)
35
+
36
+ result = nil
37
+ import_dialog.acquire { |*args| result = args }
38
+ expect(result.first.to_a).to eq [an_artist_of_the_floating_world]
39
+ end
40
+ end
41
+ end