blob: 663ca4ba3499245c24f0806e57c5d65d825f4f1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
#
require 'efl/evas'
#
describe Efl::Evas do
#
include Efl
#
it "should init" do
Evas.init.should eql 1
Evas.init.should eql 2
Evas.init.should eql 3
end
#
it "should shutdown" do
Evas.shutdown.should eql 2
Evas.shutdown.should eql 1
Evas.shutdown.should eql 0
end
#
it "evas alloc error enum is ok" do
Efl::API.enum_value(:evas_alloc_error_none).should eql 0
Efl::API.enum_value(:evas_alloc_error_fatal).should eql 1
Efl::API.enum_value(:evas_alloc_error_recovered).should eql 2
Efl::API.enum_type(:evas_alloc_error)[0].should eql :evas_alloc_error_none
Efl::API.enum_type(:evas_alloc_error)[1].should eql :evas_alloc_error_fatal
Efl::API.enum_type(:evas_alloc_error)[2].should eql :evas_alloc_error_recovered
Efl::API.enum_type(:evas_alloc_error)[:evas_alloc_error_none].should eql 0
Efl::API.enum_type(:evas_alloc_error)[:evas_alloc_error_fatal].should eql 1
Efl::API.enum_type(:evas_alloc_error)[:evas_alloc_error_recovered].should eql 2
end
#
it "should have no memory allocation error occured" do
Evas.init
Evas.alloc_error.should eql :evas_alloc_error_none
Evas.shutdown
end
#
it "should process async events" do
cb = Proc.new do |target,type,evt|
target.read_string.should eql "target"
type.should eql :evas_callback_show
evt.read_string.should eql "work"
end
Evas.init
target = FFI::MemoryPointer.from_string("target")
work = FFI::MemoryPointer.from_string("work")
Evas.async_events_put target, :evas_callback_show, work, cb
Evas.async_events_process.should eql 1
Evas.async_events_process.should eql 0
Evas.shutdown
end
end
|