summaryrefslogtreecommitdiffstats
path: root/spec/eina_list_spec.rb
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2011-04-29 14:45:08 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2011-04-29 14:45:08 +0200
commit0ed32396a0fd63625ea94c4da86c2df3829acc72 (patch)
tree853b116cacf2ced99799a69868745f60ead8e254 /spec/eina_list_spec.rb
parent7d9d18850322a11f0f40913a5442b7a981b47c0a (diff)
downloadffi-efl-0ed32396a0fd63625ea94c4da86c2df3829acc72.zip
ffi-efl-0ed32396a0fd63625ea94c4da86c2df3829acc72.tar.gz
update efl/eina* and specs
Diffstat (limited to 'spec/eina_list_spec.rb')
-rw-r--r--spec/eina_list_spec.rb101
1 files changed, 101 insertions, 0 deletions
diff --git a/spec/eina_list_spec.rb b/spec/eina_list_spec.rb
new file mode 100644
index 0000000..74f89c5
--- /dev/null
+++ b/spec/eina_list_spec.rb
@@ -0,0 +1,101 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/eina'
+require 'efl/eina_list'
+#
+describe Efl::EinaList do
+ #
+ before(:all) {
+ REinaList = Efl::EinaList::REinaList
+ Efl::Eina.init.should eql 1
+ }
+ after(:all) {
+ Efl::Eina.shutdown.should eql 0
+ }
+ #
+ it "should append prepend and fetch" do
+ l = REinaList.new
+ d1 = ::FFI::MemoryPointer.from_string "D0"
+ d2 = ::FFI::MemoryPointer.from_string "D1"
+ d3 = ::FFI::MemoryPointer.from_string "D2"
+ d4 = ::FFI::MemoryPointer.from_string "D3"
+ l.append d3
+ l.prepend d2
+ l << d4
+ l.unshift d1
+ 0.upto 3 do |i|
+ l.nth(i).read_string.should eql "D#{i}"
+ end
+ l.each { |p| p.read_string.empty?.should be_false }
+ l.free
+ end
+ #
+ it "should be able to convert into ruby Array from NULL pointer" do
+ ary = Array.from_eina_list ::FFI::Pointer::NULL
+ ary.empty?.should be_true
+ ary.is_a?(Array).should be_true
+ end
+ #
+ it "should be able to convert into ruby Array from empty REinaList" do
+ ary = Array.from_eina_list REinaList.new
+ ary.empty?.should be_true
+ ary.is_a?(Array).should be_true
+ end
+ #
+ it "should be able to convert into ruby Array from empty REinaList pointer" do
+ ary = Array.from_eina_list REinaList.new.to_ptr
+ ary.empty?.should be_true
+ ary.is_a?(Array).should be_true
+ end
+ #
+ it "should be able to convert into ruby Array from non empty REinaList" do
+ l = REinaList.new
+ d1 = ::FFI::MemoryPointer.from_string "D0"
+ d2 = ::FFI::MemoryPointer.from_string "D1"
+ d3 = ::FFI::MemoryPointer.from_string "D2"
+ d4 = ::FFI::MemoryPointer.from_string "D3"
+ l.append d3
+ l.prepend d2
+ l << d4
+ l.unshift d1
+ ary = Array.from_eina_list l
+ ary.length.should eql 4
+ 0.upto 3 do |i|
+ ary[i].read_string.should eql "D#{i}"
+ end
+ l.free
+ end
+ #
+ it "should be able to convert into ruby Array from non empty REinaList pointer" do
+ l = REinaList.new
+ d1 = ::FFI::MemoryPointer.from_string "D0"
+ d2 = ::FFI::MemoryPointer.from_string "D1"
+ d3 = ::FFI::MemoryPointer.from_string "D2"
+ d4 = ::FFI::MemoryPointer.from_string "D3"
+ l.append d3
+ l.prepend d2
+ l << d4
+ l.unshift d1
+ ary = Array.from_eina_list l.to_ptr
+ ary.length.should eql 4
+ 0.upto 3 do |i|
+ ary[i].read_string.should eql "D#{i}"
+ end
+ l.free
+ end
+ #
+ it "should be able to build from ruby Array" do
+ a = []
+ a << ::FFI::MemoryPointer.from_string("D0")
+ a << ::FFI::MemoryPointer.from_string("D1")
+ a << ::FFI::MemoryPointer.from_string("D2")
+ a << ::FFI::MemoryPointer.from_string("D3")
+ l = REinaList.new a
+ 0.upto 3 do |i|
+ l.nth(i).read_string.should eql "D#{i}"
+ end
+ l.free
+ end
+ #
+end