gir_ffi 0.14.0 → 0.15.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (265) hide show
  1. checksums.yaml +4 -4
  2. data/Changelog.md +45 -0
  3. data/Gemfile +6 -4
  4. data/README.md +11 -10
  5. data/Rakefile +5 -5
  6. data/lib/ffi-glib.rb +16 -16
  7. data/lib/ffi-glib/array.rb +14 -4
  8. data/lib/ffi-glib/byte_array.rb +7 -2
  9. data/lib/ffi-glib/container_class_methods.rb +1 -1
  10. data/lib/ffi-glib/error.rb +1 -1
  11. data/lib/ffi-glib/hash_table.rb +3 -3
  12. data/lib/ffi-glib/list.rb +1 -1
  13. data/lib/ffi-glib/list_methods.rb +1 -1
  14. data/lib/ffi-glib/main_loop.rb +3 -3
  15. data/lib/ffi-glib/ptr_array.rb +30 -8
  16. data/lib/ffi-glib/s_list.rb +1 -1
  17. data/lib/ffi-glib/variant.rb +1 -1
  18. data/lib/ffi-gobject.rb +13 -13
  19. data/lib/ffi-gobject/object.rb +23 -32
  20. data/lib/ffi-gobject/param_spec.rb +1 -1
  21. data/lib/ffi-gobject/ruby_closure.rb +2 -2
  22. data/lib/ffi-gobject/value.rb +40 -29
  23. data/lib/ffi-gobject_introspection.rb +20 -20
  24. data/lib/ffi-gobject_introspection/gobject_type_init.rb +2 -2
  25. data/lib/ffi-gobject_introspection/i_arg_info.rb +2 -2
  26. data/lib/ffi-gobject_introspection/i_base_info.rb +27 -17
  27. data/lib/ffi-gobject_introspection/i_callable_info.rb +4 -4
  28. data/lib/ffi-gobject_introspection/i_constant_info.rb +2 -2
  29. data/lib/ffi-gobject_introspection/i_enum_info.rb +1 -0
  30. data/lib/ffi-gobject_introspection/i_field_info.rb +1 -1
  31. data/lib/ffi-gobject_introspection/i_function_info.rb +1 -1
  32. data/lib/ffi-gobject_introspection/i_interface_info.rb +1 -1
  33. data/lib/ffi-gobject_introspection/i_object_info.rb +2 -2
  34. data/lib/ffi-gobject_introspection/i_property_info.rb +2 -2
  35. data/lib/ffi-gobject_introspection/i_repository.rb +9 -6
  36. data/lib/ffi-gobject_introspection/i_struct_info.rb +2 -1
  37. data/lib/ffi-gobject_introspection/i_type_info.rb +13 -7
  38. data/lib/ffi-gobject_introspection/i_unresolved_info.rb +1 -1
  39. data/lib/ffi-gobject_introspection/i_vfunc_info.rb +1 -1
  40. data/lib/ffi-gobject_introspection/lib.rb +30 -19
  41. data/lib/ffi-gobject_introspection/strv.rb +1 -1
  42. data/lib/gir_ffi-base.rb +1 -1
  43. data/lib/gir_ffi-base/gobject.rb +26 -25
  44. data/lib/gir_ffi-base/gobject/lib.rb +3 -2
  45. data/lib/gir_ffi.rb +3 -3
  46. data/lib/gir_ffi/allocation_helper.rb +1 -1
  47. data/lib/gir_ffi/arg_helper.rb +4 -4
  48. data/lib/gir_ffi/{in_out_pointer.rb → array_element_convertor.rb} +16 -23
  49. data/lib/gir_ffi/boolean.rb +1 -1
  50. data/lib/gir_ffi/boxed_base.rb +1 -1
  51. data/lib/gir_ffi/builder.rb +18 -10
  52. data/lib/gir_ffi/builder_helper.rb +6 -1
  53. data/lib/gir_ffi/builders/argument_builder.rb +19 -19
  54. data/lib/gir_ffi/builders/argument_builder_collection.rb +2 -2
  55. data/lib/gir_ffi/builders/base_argument_builder.rb +1 -0
  56. data/lib/gir_ffi/builders/base_method_builder.rb +7 -7
  57. data/lib/gir_ffi/builders/base_return_value_builder.rb +1 -1
  58. data/lib/gir_ffi/builders/base_type_builder.rb +1 -1
  59. data/lib/gir_ffi/builders/c_to_ruby_convertor.rb +5 -5
  60. data/lib/gir_ffi/builders/callback_argument_builder.rb +8 -8
  61. data/lib/gir_ffi/builders/callback_builder.rb +16 -4
  62. data/lib/gir_ffi/builders/callback_return_value_builder.rb +2 -2
  63. data/lib/gir_ffi/builders/closure_argument_builder.rb +1 -1
  64. data/lib/gir_ffi/builders/closure_return_value_builder.rb +1 -1
  65. data/lib/gir_ffi/builders/constant_builder.rb +1 -1
  66. data/lib/gir_ffi/builders/constructor_builder.rb +9 -9
  67. data/lib/gir_ffi/builders/enum_builder.rb +16 -3
  68. data/lib/gir_ffi/builders/field_builder.rb +20 -18
  69. data/lib/gir_ffi/builders/flags_builder.rb +2 -2
  70. data/lib/gir_ffi/builders/full_c_to_ruby_convertor.rb +1 -1
  71. data/lib/gir_ffi/builders/function_builder.rb +11 -5
  72. data/lib/gir_ffi/builders/initializer_builder.rb +3 -3
  73. data/lib/gir_ffi/builders/initializer_return_value_builder.rb +2 -2
  74. data/lib/gir_ffi/builders/interface_builder.rb +2 -2
  75. data/lib/gir_ffi/builders/mapping_method_builder.rb +9 -9
  76. data/lib/gir_ffi/builders/marshalling_method_builder.rb +7 -7
  77. data/lib/gir_ffi/builders/method_template.rb +1 -1
  78. data/lib/gir_ffi/builders/module_builder.rb +7 -7
  79. data/lib/gir_ffi/builders/object_builder.rb +6 -6
  80. data/lib/gir_ffi/builders/property_argument_builder.rb +1 -1
  81. data/lib/gir_ffi/builders/property_builder.rb +13 -12
  82. data/lib/gir_ffi/builders/property_return_value_builder.rb +1 -1
  83. data/lib/gir_ffi/builders/registered_type_builder.rb +14 -5
  84. data/lib/gir_ffi/builders/return_value_builder.rb +4 -4
  85. data/lib/gir_ffi/builders/ruby_to_c_convertor.rb +6 -6
  86. data/lib/gir_ffi/builders/signal_closure_builder.rb +2 -2
  87. data/lib/gir_ffi/builders/struct_builder.rb +6 -4
  88. data/lib/gir_ffi/builders/struct_like.rb +1 -1
  89. data/lib/gir_ffi/builders/type_builder.rb +12 -12
  90. data/lib/gir_ffi/builders/unintrospectable_boxed_builder.rb +2 -2
  91. data/lib/gir_ffi/builders/unintrospectable_builder.rb +2 -2
  92. data/lib/gir_ffi/builders/union_builder.rb +4 -4
  93. data/lib/gir_ffi/builders/user_defined_builder.rb +2 -2
  94. data/lib/gir_ffi/builders/vfunc_argument_builder.rb +1 -1
  95. data/lib/gir_ffi/builders/vfunc_builder.rb +8 -8
  96. data/lib/gir_ffi/builders/with_layout.rb +2 -2
  97. data/lib/gir_ffi/callback_base.rb +4 -6
  98. data/lib/gir_ffi/class_base.rb +6 -5
  99. data/lib/gir_ffi/core.rb +19 -20
  100. data/lib/gir_ffi/enum_base.rb +1 -1
  101. data/lib/gir_ffi/enum_like_base.rb +2 -2
  102. data/lib/gir_ffi/error_argument_info.rb +2 -2
  103. data/lib/gir_ffi/error_type_info.rb +1 -1
  104. data/lib/gir_ffi/ffi_ext.rb +1 -1
  105. data/lib/gir_ffi/ffi_ext/pointer.rb +1 -1
  106. data/lib/gir_ffi/flags_base.rb +1 -1
  107. data/lib/gir_ffi/in_pointer.rb +10 -0
  108. data/lib/gir_ffi/info_ext.rb +15 -14
  109. data/lib/gir_ffi/info_ext/full_type_name.rb +3 -3
  110. data/lib/gir_ffi/info_ext/i_arg_info.rb +1 -1
  111. data/lib/gir_ffi/info_ext/i_callable_info.rb +1 -1
  112. data/lib/gir_ffi/info_ext/i_callback_info.rb +1 -1
  113. data/lib/gir_ffi/info_ext/i_field_info.rb +1 -1
  114. data/lib/gir_ffi/info_ext/i_function_info.rb +1 -1
  115. data/lib/gir_ffi/info_ext/i_property_info.rb +2 -2
  116. data/lib/gir_ffi/info_ext/i_registered_type_info.rb +4 -5
  117. data/lib/gir_ffi/info_ext/i_signal_info.rb +7 -3
  118. data/lib/gir_ffi/info_ext/i_type_info.rb +48 -26
  119. data/lib/gir_ffi/info_ext/i_unresolved_info.rb +1 -1
  120. data/lib/gir_ffi/info_ext/i_value_info.rb +25 -0
  121. data/lib/gir_ffi/info_ext/i_vfunc_info.rb +2 -2
  122. data/lib/gir_ffi/info_ext/safe_constant_name.rb +8 -8
  123. data/lib/gir_ffi/info_ext/safe_function_name.rb +2 -2
  124. data/lib/gir_ffi/interface_base.rb +3 -3
  125. data/lib/gir_ffi/lib_c.rb +1 -1
  126. data/lib/gir_ffi/method_stubber.rb +1 -1
  127. data/lib/gir_ffi/module_base.rb +1 -1
  128. data/lib/gir_ffi/object_base.rb +3 -4
  129. data/lib/gir_ffi/receiver_argument_info.rb +1 -1
  130. data/lib/gir_ffi/receiver_type_info.rb +2 -2
  131. data/lib/gir_ffi/registered_type_base.rb +1 -1
  132. data/lib/gir_ffi/sized_array.rb +4 -2
  133. data/lib/gir_ffi/struct.rb +1 -1
  134. data/lib/gir_ffi/struct_base.rb +1 -1
  135. data/lib/gir_ffi/type_map.rb +2 -23
  136. data/lib/gir_ffi/unintrospectable_boxed_info.rb +2 -2
  137. data/lib/gir_ffi/unintrospectable_type_info.rb +5 -1
  138. data/lib/gir_ffi/union.rb +1 -1
  139. data/lib/gir_ffi/union_base.rb +1 -1
  140. data/lib/gir_ffi/user_defined_object_info.rb +6 -2
  141. data/lib/gir_ffi/user_defined_property_info.rb +33 -33
  142. data/lib/gir_ffi/version.rb +1 -1
  143. data/tasks/test.rake +3 -2
  144. data/test/base_test_helper.rb +16 -9
  145. data/test/ffi-glib/array_test.rb +71 -56
  146. data/test/ffi-glib/byte_array_test.rb +13 -7
  147. data/test/ffi-glib/bytes_test.rb +24 -19
  148. data/test/ffi-glib/closure_test.rb +11 -11
  149. data/test/ffi-glib/destroy_notify_test.rb +6 -6
  150. data/test/ffi-glib/hash_table_test.rb +27 -27
  151. data/test/ffi-glib/list_test.rb +22 -22
  152. data/test/ffi-glib/main_loop_test.rb +12 -12
  153. data/test/ffi-glib/ptr_array_test.rb +39 -39
  154. data/test/ffi-glib/ruby_closure_test.rb +10 -10
  155. data/test/ffi-glib/s_list_test.rb +20 -20
  156. data/test/ffi-glib/strv_test.rb +19 -19
  157. data/test/ffi-glib/variant_test.rb +5 -5
  158. data/test/ffi-gobject/gobject_test.rb +48 -44
  159. data/test/ffi-gobject/object_class_test.rb +8 -8
  160. data/test/ffi-gobject/object_test.rb +51 -68
  161. data/test/ffi-gobject/param_spec_test.rb +12 -12
  162. data/test/ffi-gobject/value_test.rb +145 -125
  163. data/test/ffi-gobject_introspection/gobject_type_init_test.rb +9 -9
  164. data/test/ffi-gobject_introspection/i_base_info_test.rb +15 -16
  165. data/test/ffi-gobject_introspection/i_constant_info_test.rb +9 -13
  166. data/test/ffi-gobject_introspection/i_enum_info_test.rb +7 -7
  167. data/test/ffi-gobject_introspection/i_function_info_test.rb +1 -1
  168. data/test/ffi-gobject_introspection/i_interface_info_test.rb +10 -10
  169. data/test/ffi-gobject_introspection/i_object_info_test.rb +23 -23
  170. data/test/ffi-gobject_introspection/i_property_info_test.rb +19 -19
  171. data/test/ffi-gobject_introspection/i_registered_type_info_test.rb +10 -10
  172. data/test/ffi-gobject_introspection/i_repository_test.rb +34 -34
  173. data/test/ffi-gobject_introspection/i_struct_info_test.rb +10 -10
  174. data/test/ffi-gobject_introspection/i_type_info_test.rb +12 -15
  175. data/test/ffi-gobject_introspection/i_union_info_test.rb +7 -7
  176. data/test/ffi-gobject_introspection/i_vfunc_info_test.rb +16 -16
  177. data/test/ffi-gobject_introspection/lib_test.rb +3 -3
  178. data/test/ffi-gobject_introspection/strv_test.rb +9 -9
  179. data/test/ffi-gobject_test.rb +47 -45
  180. data/test/gir_ffi/allocation_helper_test.rb +13 -13
  181. data/test/gir_ffi/arg_helper_test.rb +71 -65
  182. data/test/gir_ffi/boolean_test.rb +20 -20
  183. data/test/gir_ffi/boxed_base_test.rb +18 -18
  184. data/test/gir_ffi/builder_test.rb +81 -213
  185. data/test/gir_ffi/builders/argument_builder_test.rb +321 -287
  186. data/test/gir_ffi/builders/base_argument_builder_test.rb +1 -1
  187. data/test/gir_ffi/builders/callback_argument_builder_test.rb +57 -56
  188. data/test/gir_ffi/builders/callback_builder_test.rb +71 -72
  189. data/test/gir_ffi/builders/callback_return_value_builder_test.rb +40 -41
  190. data/test/gir_ffi/builders/constant_builder_test.rb +1 -1
  191. data/test/gir_ffi/builders/constructor_builder_test.rb +12 -10
  192. data/test/gir_ffi/builders/enum_builder_test.rb +12 -11
  193. data/test/gir_ffi/builders/field_builder_test.rb +48 -42
  194. data/test/gir_ffi/builders/function_builder_test.rb +256 -224
  195. data/test/gir_ffi/builders/initializer_builder_test.rb +16 -14
  196. data/test/gir_ffi/builders/interface_builder_test.rb +9 -9
  197. data/test/gir_ffi/builders/module_builder_test.rb +18 -18
  198. data/test/gir_ffi/builders/object_builder_test.rb +41 -41
  199. data/test/gir_ffi/builders/property_builder_test.rb +94 -94
  200. data/test/gir_ffi/builders/registered_type_builder_test.rb +35 -11
  201. data/test/gir_ffi/builders/return_value_builder_test.rb +227 -223
  202. data/test/gir_ffi/builders/signal_closure_builder_test.rb +124 -113
  203. data/test/gir_ffi/builders/struct_builder_test.rb +38 -35
  204. data/test/gir_ffi/builders/unintrospectable_boxed_builder_test.rb +8 -14
  205. data/test/gir_ffi/builders/unintrospectable_builder_test.rb +34 -23
  206. data/test/gir_ffi/builders/union_builder_test.rb +12 -15
  207. data/test/gir_ffi/builders/user_defined_builder_test.rb +152 -148
  208. data/test/gir_ffi/builders/vfunc_argument_builder_test.rb +46 -40
  209. data/test/gir_ffi/builders/vfunc_builder_test.rb +149 -157
  210. data/test/gir_ffi/callback_base_test.rb +9 -9
  211. data/test/gir_ffi/class_base_test.rb +56 -53
  212. data/test/gir_ffi/core_test.rb +36 -35
  213. data/test/gir_ffi/enum_base_test.rb +19 -19
  214. data/test/gir_ffi/error_type_info_test.rb +23 -23
  215. data/test/gir_ffi/ffi_ext/pointer_test.rb +9 -7
  216. data/test/gir_ffi/g_type_test.rb +11 -11
  217. data/test/gir_ffi/in_pointer_test.rb +70 -50
  218. data/test/gir_ffi/info_ext/i_callable_info_test.rb +5 -5
  219. data/test/gir_ffi/info_ext/i_callback_info_test.rb +6 -5
  220. data/test/gir_ffi/info_ext/i_field_info_test.rb +6 -6
  221. data/test/gir_ffi/info_ext/i_function_info_test.rb +17 -17
  222. data/test/gir_ffi/info_ext/i_signal_info_test.rb +8 -8
  223. data/test/gir_ffi/info_ext/i_type_info_test.rb +231 -216
  224. data/test/gir_ffi/info_ext/i_unresolved_info_test.rb +4 -4
  225. data/test/gir_ffi/info_ext/safe_constant_name_test.rb +8 -8
  226. data/test/gir_ffi/info_ext/safe_function_name_test.rb +8 -8
  227. data/test/gir_ffi/interface_base_test.rb +8 -8
  228. data/test/gir_ffi/method_stubber_test.rb +21 -19
  229. data/test/gir_ffi/object_base_test.rb +23 -23
  230. data/test/gir_ffi/object_store_test.rb +13 -13
  231. data/test/gir_ffi/receiver_argument_info_test.rb +15 -15
  232. data/test/gir_ffi/sized_array_test.rb +68 -68
  233. data/test/gir_ffi/struct_base_test.rb +8 -8
  234. data/test/gir_ffi/struct_like_base_test.rb +64 -64
  235. data/test/gir_ffi/type_map_test.rb +8 -8
  236. data/test/gir_ffi/unintrospectable_type_info_test.rb +33 -33
  237. data/test/gir_ffi/union_base_test.rb +8 -8
  238. data/test/gir_ffi/user_defined_object_info_test.rb +34 -34
  239. data/test/gir_ffi/user_defined_property_info_test.rb +16 -16
  240. data/test/gir_ffi/variable_name_generator_test.rb +8 -8
  241. data/test/gir_ffi/version_test.rb +4 -4
  242. data/test/gir_ffi/zero_terminated_test.rb +34 -34
  243. data/test/gir_ffi_test_helper.rb +3 -3
  244. data/test/integration/callback_exceptions_test.rb +17 -21
  245. data/test/integration/derived_classes_test.rb +14 -13
  246. data/test/integration/generated_everything_test.rb +225 -224
  247. data/test/integration/generated_gimarshallingtests_test.rb +1174 -1060
  248. data/test/integration/generated_gio_test.rb +36 -36
  249. data/test/integration/generated_glib_test.rb +4 -6
  250. data/test/integration/generated_gobject_test.rb +43 -35
  251. data/test/integration/generated_gst_test.rb +20 -16
  252. data/test/integration/generated_gtk_source_test.rb +9 -15
  253. data/test/integration/generated_gtop_test.rb +8 -15
  254. data/test/integration/generated_pango_ft2_test.rb +2 -2
  255. data/test/integration/generated_pango_test.rb +4 -4
  256. data/test/integration/generated_regress_test.rb +1858 -1632
  257. data/test/integration/generated_secret_test.rb +8 -11
  258. data/test/integration/generated_utility_test.rb +81 -81
  259. data/test/integration/generated_warnlib_test.rb +17 -21
  260. data/test/integration/method_lookup_test.rb +6 -6
  261. data/test/introspection_test_helper.rb +49 -7
  262. data/test/minitest/stats_plugin.rb +1 -1
  263. metadata +21 -23
  264. data/lib/ffi-glib/array_methods.rb +0 -16
  265. data/test/gir_ffi/in_out_pointer_test.rb +0 -56
@@ -1,30 +1,30 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'gir_ffi_test_helper'
3
+ require "gir_ffi_test_helper"
4
4
 
5
5
  describe GLib::PtrArray do
6
- it 'knows its element type' do
6
+ it "knows its element type" do
7
7
  arr = GLib::PtrArray.new :utf8
8
8
  assert_equal :utf8, arr.element_type
9
9
  end
10
10
 
11
- describe '::add' do
12
- it 'correctly takes the type into account' do
11
+ describe "::add" do
12
+ it "correctly takes the type into account" do
13
13
  arr = GLib::PtrArray.new :utf8
14
- str = 'test'
14
+ str = "test"
15
15
  GLib::PtrArray.add arr, str
16
16
 
17
17
  assert_equal str, arr.pdata.read_pointer.read_string
18
18
  end
19
19
  end
20
20
 
21
- describe '#each' do
22
- it 'works normally' do
21
+ describe "#each" do
22
+ it "works normally" do
23
23
  arr = GLib::PtrArray.new :utf8
24
24
 
25
- GLib::PtrArray.add arr, 'test1'
26
- GLib::PtrArray.add arr, 'test2'
27
- GLib::PtrArray.add arr, 'test3'
25
+ GLib::PtrArray.add arr, "test1"
26
+ GLib::PtrArray.add arr, "test2"
27
+ GLib::PtrArray.add arr, "test3"
28
28
 
29
29
  a = []
30
30
  arr.each { |v| a << v }
@@ -32,81 +32,81 @@ describe GLib::PtrArray do
32
32
  assert_equal %w(test1 test2 test3), a
33
33
  end
34
34
 
35
- it 'works when exiting the loop prematurely' do
35
+ it "works when exiting the loop prematurely" do
36
36
  arr = GLib::PtrArray.new :utf8
37
37
 
38
- GLib::PtrArray.add arr, 'test1'
39
- GLib::PtrArray.add arr, 'test2'
40
- GLib::PtrArray.add arr, 'test3'
38
+ GLib::PtrArray.add arr, "test1"
39
+ GLib::PtrArray.add arr, "test2"
40
+ GLib::PtrArray.add arr, "test3"
41
41
 
42
42
  a = []
43
43
  arr.each do |v|
44
44
  a << v
45
- break if v == 'test2'
45
+ break if v == "test2"
46
46
  end
47
47
 
48
48
  assert_equal %w(test1 test2), a
49
49
  end
50
50
  end
51
51
 
52
- it 'includes Enumerable' do
53
- GLib::PtrArray.must_include Enumerable
52
+ it "includes Enumerable" do
53
+ _(GLib::PtrArray).must_include Enumerable
54
54
  end
55
55
 
56
- it 'has a working #to_a method' do
56
+ it "has a working #to_a method" do
57
57
  arr = GLib::PtrArray.new :utf8
58
58
 
59
- GLib::PtrArray.add arr, 'test1'
60
- GLib::PtrArray.add arr, 'test2'
61
- GLib::PtrArray.add arr, 'test3'
59
+ GLib::PtrArray.add arr, "test1"
60
+ GLib::PtrArray.add arr, "test2"
61
+ GLib::PtrArray.add arr, "test3"
62
62
 
63
63
  assert_equal %w(test1 test2 test3), arr.to_a
64
64
  end
65
65
 
66
- it 'has #add as an instance method too' do
66
+ it "has #add as an instance method too" do
67
67
  arr = GLib::PtrArray.new :utf8
68
- arr.add 'test1'
69
- assert_equal ['test1'], arr.to_a
68
+ arr.add "test1"
69
+ assert_equal ["test1"], arr.to_a
70
70
  end
71
71
 
72
- describe '#==' do
73
- it 'returns true when comparing to an array with the same elements' do
72
+ describe "#==" do
73
+ it "returns true when comparing to an array with the same elements" do
74
74
  arr = GLib::PtrArray.from :utf8, %w(1 2 3)
75
75
 
76
- arr.must_be :==, %w(1 2 3)
76
+ _(arr).must_be :==, %w(1 2 3)
77
77
  end
78
78
 
79
- it 'returns false when comparing to an array with different elements' do
79
+ it "returns false when comparing to an array with different elements" do
80
80
  arr = GLib::PtrArray.from :utf8, %w(1 2 3)
81
81
 
82
- arr.wont_be :==, %w(1 2)
82
+ _(arr).wont_be :==, %w(1 2)
83
83
  end
84
84
 
85
- it 'returns true when comparing to a GPtrArray with the same elements' do
85
+ it "returns true when comparing to a GPtrArray with the same elements" do
86
86
  arr = GLib::PtrArray.from :utf8, %w(1 2 3)
87
87
  other = GLib::PtrArray.from :utf8, %w(1 2 3)
88
88
 
89
- arr.must_be :==, other
89
+ _(arr).must_be :==, other
90
90
  end
91
91
 
92
- it 'returns false when comparing to a GPtrArray with different elements' do
92
+ it "returns false when comparing to a GPtrArray with different elements" do
93
93
  arr = GLib::PtrArray.from :utf8, %w(1 2 3)
94
94
  other = GLib::PtrArray.from :utf8, %w(1 2)
95
95
 
96
- arr.wont_be :==, other
96
+ _(arr).wont_be :==, other
97
97
  end
98
98
  end
99
99
 
100
- describe '#index' do
101
- it 'returns the correct element' do
100
+ describe "#index" do
101
+ it "returns the correct element" do
102
102
  arr = GLib::PtrArray.from :utf8, %w(1 2 3)
103
- arr.index(1).must_equal '2'
103
+ _(arr.index(1)).must_equal "2"
104
104
  end
105
105
 
106
- it 'raises an error if the index is out of bounds' do
106
+ it "raises an error if the index is out of bounds" do
107
107
  arr = GLib::PtrArray.from :utf8, %w(1 2 3)
108
- proc { arr.index(16) }.must_raise IndexError
109
- proc { arr.index(-1) }.must_raise IndexError
108
+ _(proc { arr.index(16) }).must_raise IndexError
109
+ _(proc { arr.index(-1) }).must_raise IndexError
110
110
  end
111
111
  end
112
112
  end
@@ -1,23 +1,23 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'gir_ffi_test_helper'
3
+ require "gir_ffi_test_helper"
4
4
 
5
5
  describe GObject::RubyClosure do
6
- describe '.new' do
7
- it 'takes a mandatory block argument' do
6
+ describe ".new" do
7
+ it "takes a mandatory block argument" do
8
8
  assert_raises ArgumentError do
9
9
  GObject::RubyClosure.new
10
10
  end
11
11
  end
12
12
 
13
- it 'returns a kind of Closure' do
13
+ it "returns a kind of Closure" do
14
14
  c = GObject::RubyClosure.new {}
15
15
  assert_kind_of GObject::Closure, c
16
16
  end
17
17
  end
18
18
 
19
- describe '.wrap' do
20
- it 'returns a fully functional object that can invoke the original block' do
19
+ describe ".wrap" do
20
+ it "returns a fully functional object that can invoke the original block" do
21
21
  a = 0
22
22
  c = GObject::RubyClosure.new { a = 2 }
23
23
  c2 = GObject::RubyClosure.wrap(c.to_ptr)
@@ -26,7 +26,7 @@ describe GObject::RubyClosure do
26
26
  end
27
27
  end
28
28
 
29
- describe '.marshaller' do
29
+ describe ".marshaller" do
30
30
  it "invokes its closure argument's block" do
31
31
  a = 0
32
32
  c = GObject::RubyClosure.new { a = 2 }
@@ -34,7 +34,7 @@ describe GObject::RubyClosure do
34
34
  assert_equal 2, a
35
35
  end
36
36
 
37
- it 'works when its closure argument is a GObject::Closure' do
37
+ it "works when its closure argument is a GObject::Closure" do
38
38
  a = 0
39
39
  c = GObject::RubyClosure.new { a = 2 }
40
40
  c2 = GObject::Closure.wrap(c.to_ptr)
@@ -50,8 +50,8 @@ describe GObject::RubyClosure do
50
50
  end
51
51
  end
52
52
 
53
- describe '#invoke' do
54
- it 'invokes the ruby block' do
53
+ describe "#invoke" do
54
+ it "invokes the ruby block" do
55
55
  a = 0
56
56
  c = GObject::RubyClosure.new { a = 2 }
57
57
  c2 = GObject::Closure.wrap(c.to_ptr)
@@ -1,27 +1,27 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'gir_ffi_test_helper'
3
+ require "gir_ffi_test_helper"
4
4
 
5
5
  describe GLib::SList do
6
- it 'knows its element type' do
6
+ it "knows its element type" do
7
7
  arr = GLib::SList.new :gint32
8
8
  assert_equal :gint32, arr.element_type
9
9
  end
10
10
 
11
- describe '#prepend' do
12
- it 'prepends integer values' do
11
+ describe "#prepend" do
12
+ it "prepends integer values" do
13
13
  lst = GLib::SList.new :gint32
14
14
  res = lst.prepend 1
15
15
  assert_equal 1, res.data
16
16
  end
17
17
 
18
- it 'prepends string values' do
18
+ it "prepends string values" do
19
19
  lst = GLib::SList.new :utf8
20
- res = lst.prepend 'bla'
21
- assert_equal 'bla', res.data
20
+ res = lst.prepend "bla"
21
+ assert_equal "bla", res.data
22
22
  end
23
23
 
24
- it 'prepends multiple values into a single list' do
24
+ it "prepends multiple values into a single list" do
25
25
  lst = GLib::SList.new :gint32
26
26
 
27
27
  res = lst.prepend 1
@@ -33,44 +33,44 @@ describe GLib::SList do
33
33
  end
34
34
  end
35
35
 
36
- describe '::from' do
37
- it 'creates a GSList from a Ruby array' do
36
+ describe "::from" do
37
+ it "creates a GSList from a Ruby array" do
38
38
  lst = GLib::SList.from :gint32, [3, 2, 1]
39
39
  assert_equal [3, 2, 1], lst.to_a
40
40
  end
41
41
 
42
- it 'return its argument if given a GSList' do
42
+ it "return its argument if given a GSList" do
43
43
  lst = GLib::SList.from :gint32, [3, 2, 1]
44
44
  lst2 = GLib::SList.from :gint32, lst
45
45
  assert_equal lst, lst2
46
46
  end
47
47
  end
48
48
 
49
- describe '#==' do
50
- it 'returns true when comparing to an array with the same elements' do
49
+ describe "#==" do
50
+ it "returns true when comparing to an array with the same elements" do
51
51
  list = GLib::SList.from :gint32, [1, 2, 3]
52
52
 
53
- list.must_be :==, [1, 2, 3]
53
+ _(list).must_be :==, [1, 2, 3]
54
54
  end
55
55
 
56
- it 'returns false when comparing to an array with different elements' do
56
+ it "returns false when comparing to an array with different elements" do
57
57
  list = GLib::SList.from :gint32, [1, 2, 3]
58
58
 
59
- list.wont_be :==, [1, 2]
59
+ _(list).wont_be :==, [1, 2]
60
60
  end
61
61
 
62
- it 'returns true when comparing to a list with the same elements' do
62
+ it "returns true when comparing to a list with the same elements" do
63
63
  list = GLib::SList.from :gint32, [1, 2, 3]
64
64
  other = GLib::SList.from :gint32, [1, 2, 3]
65
65
 
66
- list.must_be :==, other
66
+ _(list).must_be :==, other
67
67
  end
68
68
 
69
- it 'returns false when comparing to a list with different elements' do
69
+ it "returns false when comparing to a list with different elements" do
70
70
  list = GLib::SList.from :gint32, [1, 2, 3]
71
71
  other = GLib::SList.from :gint32, [1, 2]
72
72
 
73
- list.wont_be :==, other
73
+ _(list).wont_be :==, other
74
74
  end
75
75
  end
76
76
  end
@@ -1,60 +1,60 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'base_test_helper'
3
+ require "base_test_helper"
4
4
 
5
5
  describe GLib::Strv do
6
- describe '::from' do
7
- it 'creates a Strv from a Ruby array' do
6
+ describe "::from" do
7
+ it "creates a Strv from a Ruby array" do
8
8
  strv = GLib::Strv.from %w(1 2 3)
9
- strv.must_be_instance_of GLib::Strv
10
- strv.to_a.must_equal %w(1 2 3)
9
+ _(strv).must_be_instance_of GLib::Strv
10
+ _(strv.to_a).must_equal %w(1 2 3)
11
11
  end
12
12
 
13
- it 'return its argument if given a Strv' do
13
+ it "return its argument if given a Strv" do
14
14
  strv = GLib::Strv.from %w(1 2 3)
15
15
  strv2 = GLib::Strv.from strv
16
16
  assert strv2.equal? strv
17
17
  end
18
18
 
19
- it 'wraps its argument if given a pointer' do
19
+ it "wraps its argument if given a pointer" do
20
20
  strv = GLib::Strv.from %w(1 2 3)
21
21
 
22
22
  pointer = strv.to_ptr
23
- pointer.must_be_kind_of FFI::Pointer
23
+ _(pointer).must_be_kind_of FFI::Pointer
24
24
 
25
25
  strv2 = GLib::Strv.from pointer
26
26
 
27
- strv2.must_be_kind_of GLib::Strv
27
+ _(strv2).must_be_kind_of GLib::Strv
28
28
  refute strv2.equal? strv
29
- strv2.to_a.must_equal strv.to_a
29
+ _(strv2.to_a).must_equal strv.to_a
30
30
  end
31
31
  end
32
32
 
33
- describe '#==' do
34
- it 'returns true when comparing to an array with the same elements' do
33
+ describe "#==" do
34
+ it "returns true when comparing to an array with the same elements" do
35
35
  strv = GLib::Strv.from %w(1 2 3)
36
36
 
37
- strv.must_be :==, %w(1 2 3)
37
+ _(strv).must_be :==, %w(1 2 3)
38
38
  end
39
39
 
40
- it 'returns false when comparing to an array with different elements' do
40
+ it "returns false when comparing to an array with different elements" do
41
41
  strv = GLib::Strv.from %w(1 2 3)
42
42
 
43
- strv.wont_be :==, %w(1 2)
43
+ _(strv).wont_be :==, %w(1 2)
44
44
  end
45
45
 
46
- it 'returns true when comparing to a strv with the same elements' do
46
+ it "returns true when comparing to a strv with the same elements" do
47
47
  strv = GLib::Strv.from %w(1 2 3)
48
48
  other = GLib::Strv.from %w(1 2 3)
49
49
 
50
- strv.must_be :==, other
50
+ _(strv).must_be :==, other
51
51
  end
52
52
 
53
- it 'returns false when comparing to a strv with different elements' do
53
+ it "returns false when comparing to a strv with different elements" do
54
54
  strv = GLib::Strv.from %w(1 2 3)
55
55
  other = GLib::Strv.from %w(1 2)
56
56
 
57
- strv.wont_be :==, other
57
+ _(strv).wont_be :==, other
58
58
  end
59
59
  end
60
60
  end
@@ -1,12 +1,12 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'gir_ffi_test_helper'
3
+ require "gir_ffi_test_helper"
4
4
 
5
5
  describe GLib::Variant do
6
- describe '#get_string' do
7
- it 'returns just the contained string' do
8
- var = GLib::Variant.new_string('Foo')
9
- var.get_string.must_equal 'Foo'
6
+ describe "#get_string" do
7
+ it "returns just the contained string" do
8
+ var = GLib::Variant.new_string("Foo")
9
+ _(var.get_string).must_equal "Foo"
10
10
  end
11
11
  end
12
12
  end
@@ -1,71 +1,75 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'gir_ffi_test_helper'
3
+ require "gir_ffi_test_helper"
4
4
 
5
- require 'ffi-gobject'
5
+ require "ffi-gobject"
6
6
 
7
7
  GirFFI.setup :GIMarshallingTests
8
8
 
9
9
  describe GObject do
10
- describe '.type_init' do
11
- it 'does not raise an error' do
10
+ describe ".type_init" do
11
+ it "does not raise an error" do
12
12
  GObject.type_init
13
13
  pass
14
14
  end
15
15
  end
16
16
 
17
- it 'has constants for the fundamental GTypes' do
18
- GObject::TYPE_INVALID.must_equal GObject.type_from_name('invalid')
19
- GObject.type_name(GObject::TYPE_INVALID).must_be_nil
17
+ it "has constants for the fundamental GTypes" do
18
+ _(GObject::TYPE_INVALID).must_equal GObject.type_from_name("invalid")
19
+ _(GObject.type_name(GObject::TYPE_INVALID)).must_be_nil
20
20
 
21
- GObject.type_name(GObject::TYPE_NONE).must_equal 'void'
22
- GObject.type_name(GObject::TYPE_INTERFACE).must_equal 'GInterface'
23
- GObject.type_name(GObject::TYPE_CHAR).must_equal 'gchar'
24
- GObject.type_name(GObject::TYPE_UCHAR).must_equal 'guchar'
25
- GObject.type_name(GObject::TYPE_BOOLEAN).must_equal 'gboolean'
26
- GObject.type_name(GObject::TYPE_INT).must_equal 'gint'
27
- GObject.type_name(GObject::TYPE_UINT).must_equal 'guint'
28
- GObject.type_name(GObject::TYPE_LONG).must_equal 'glong'
29
- GObject.type_name(GObject::TYPE_ULONG).must_equal 'gulong'
30
- GObject.type_name(GObject::TYPE_INT64).must_equal 'gint64'
31
- GObject.type_name(GObject::TYPE_UINT64).must_equal 'guint64'
32
- GObject.type_name(GObject::TYPE_ENUM).must_equal 'GEnum'
33
- GObject.type_name(GObject::TYPE_FLAGS).must_equal 'GFlags'
34
- GObject.type_name(GObject::TYPE_FLOAT).must_equal 'gfloat'
35
- GObject.type_name(GObject::TYPE_DOUBLE).must_equal 'gdouble'
36
- GObject.type_name(GObject::TYPE_STRING).must_equal 'gchararray'
37
- GObject.type_name(GObject::TYPE_POINTER).must_equal 'gpointer'
38
- GObject.type_name(GObject::TYPE_BOXED).must_equal 'GBoxed'
39
- GObject.type_name(GObject::TYPE_PARAM).must_equal 'GParam'
40
- GObject.type_name(GObject::TYPE_OBJECT).must_equal 'GObject'
41
- GObject.type_name(GObject::TYPE_GTYPE).must_equal 'GType'
42
- GObject.type_name(GObject::TYPE_VARIANT).must_equal 'GVariant'
43
- GObject.type_name(GObject::TYPE_STRV).must_equal 'GStrv'
44
- GObject.type_name(GObject::TYPE_HASH_TABLE).must_equal 'GHashTable'
21
+ _(GObject.type_name(GObject::TYPE_NONE)).must_equal "void"
22
+ _(GObject.type_name(GObject::TYPE_INTERFACE)).must_equal "GInterface"
23
+ _(GObject.type_name(GObject::TYPE_CHAR)).must_equal "gchar"
24
+ _(GObject.type_name(GObject::TYPE_UCHAR)).must_equal "guchar"
25
+ _(GObject.type_name(GObject::TYPE_BOOLEAN)).must_equal "gboolean"
26
+ _(GObject.type_name(GObject::TYPE_INT)).must_equal "gint"
27
+ _(GObject.type_name(GObject::TYPE_UINT)).must_equal "guint"
28
+ _(GObject.type_name(GObject::TYPE_LONG)).must_equal "glong"
29
+ _(GObject.type_name(GObject::TYPE_ULONG)).must_equal "gulong"
30
+ _(GObject.type_name(GObject::TYPE_INT64)).must_equal "gint64"
31
+ _(GObject.type_name(GObject::TYPE_UINT64)).must_equal "guint64"
32
+ _(GObject.type_name(GObject::TYPE_ENUM)).must_equal "GEnum"
33
+ _(GObject.type_name(GObject::TYPE_FLAGS)).must_equal "GFlags"
34
+ _(GObject.type_name(GObject::TYPE_FLOAT)).must_equal "gfloat"
35
+ _(GObject.type_name(GObject::TYPE_DOUBLE)).must_equal "gdouble"
36
+ _(GObject.type_name(GObject::TYPE_STRING)).must_equal "gchararray"
37
+ _(GObject.type_name(GObject::TYPE_POINTER)).must_equal "gpointer"
38
+ _(GObject.type_name(GObject::TYPE_BOXED)).must_equal "GBoxed"
39
+ _(GObject.type_name(GObject::TYPE_PARAM)).must_equal "GParam"
40
+ _(GObject.type_name(GObject::TYPE_OBJECT)).must_equal "GObject"
41
+ _(GObject.type_name(GObject::TYPE_GTYPE)).must_equal "GType"
42
+ _(GObject.type_name(GObject::TYPE_VARIANT)).must_equal "GVariant"
43
+
44
+ _(GObject.type_name(GObject::TYPE_ARRAY)).must_equal "GArray"
45
+ _(GObject.type_name(GObject::TYPE_BYTE_ARRAY)).must_equal "GByteArray"
46
+ _(GObject.type_name(GObject::TYPE_ERROR)).must_equal "GError"
47
+ _(GObject.type_name(GObject::TYPE_HASH_TABLE)).must_equal "GHashTable"
48
+ _(GObject.type_name(GObject::TYPE_STRV)).must_equal "GStrv"
45
49
  end
46
50
 
47
- describe '::object_class_from_instance' do
48
- it 'returns a GObject::ObjectClass with the correct GType' do
51
+ describe "::object_class_from_instance" do
52
+ it "returns a GObject::ObjectClass with the correct GType" do
49
53
  obj = GIMarshallingTests::OverridesObject.new
50
54
  object_class = GObject.object_class_from_instance obj
51
55
  gtype = object_class.g_type_class.g_type
52
56
 
53
- object_class.must_be_instance_of GObject::ObjectClass
54
- gtype.must_equal GIMarshallingTests::OverridesObject.gtype
57
+ _(object_class).must_be_instance_of GObject::ObjectClass
58
+ _(gtype).must_equal GIMarshallingTests::OverridesObject.gtype
55
59
  end
56
60
  end
57
61
 
58
- describe 'creating ParamSpecs' do
59
- describe '#param_spec_int' do
60
- it 'creates a GObject::ParamSpecInt' do
61
- spec = GObject.param_spec_int('foo', 'foo bar',
62
- 'The Foo Bar Property',
62
+ describe "creating ParamSpecs" do
63
+ describe "#param_spec_int" do
64
+ it "creates a GObject::ParamSpecInt" do
65
+ spec = GObject.param_spec_int("foo", "foo bar",
66
+ "The Foo Bar Property",
63
67
  10, 20, 15,
64
68
  3)
65
- spec.must_be_instance_of GObject::ParamSpecInt
66
- spec.struct[:minimum].must_equal 10
67
- spec.struct[:maximum].must_equal 20
68
- spec.get_default_value.must_equal 15
69
+ _(spec).must_be_instance_of GObject::ParamSpecInt
70
+ _(spec.struct[:minimum]).must_equal 10
71
+ _(spec.struct[:maximum]).must_equal 20
72
+ _(spec.get_default_value).must_equal 15
69
73
  end
70
74
  end
71
75
  end