summaryrefslogtreecommitdiffstats
path: root/spec/eet_spec.rb
blob: 033ae37200909f5062fd536b51885bb6b56372be (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
#
require 'efl/eet'
#
describe EFL::EET do
    #
    include EFL
    #
    it "should init" do
        EET.init.should eql 1
        EET.init.should eql 2
        EET.init.should eql 3
    end
    #
    it "should shutdown" do
        EET.shutdown.should eql 2
        EET.shutdown.should eql 1
        EET.shutdown.should eql 0
    end
    #
    it "should clearcache" do
        EET.clearcache
        EET.clearcache
        EET.clearcache
    end
    #
    it "should open and close" do
        EET.init.should eql 1
        f = EET.open '/tmp/_eet.cfg', EET::FILE_MODE_WRITE
        f.close
        EET.shutdown.should eql 0
    end
    it "should be able to get file access mode" do
        EET.init.should eql 1
        [ EET::FILE_MODE_READ, EET::FILE_MODE_WRITE, EET::FILE_MODE_READ_WRITE ].each do |m|
            EET.open '/tmp/_eet.cfg', m do |f|
                f.mode_get.should eql m
            end
        end
        EET.shutdown.should eql 0
    end
    #
    it "should write" do
        EET.init.should eql 1
        f = EET.open '/tmp/_eet.cfg', EET::FILE_MODE_WRITE
        f.write 'config', 'test key'
        f.close
        EET.shutdown.should eql 0
    end
    #
    it "should read" do
        EET.init.should eql 1
        f = EET.open '/tmp/_eet.cfg', EET::FILE_MODE_READ
        f.read('config').should eql 'test key'
        f.close
        EET.shutdown.should eql 0
    end
    #
    it "should write in block" do
        EET.init.should eql 1
        EET.open('/tmp/_eet.cfg', EET::FILE_MODE_WRITE) do |f|
            f.write 'config2', 'test--key'
        end
        EET.shutdown.should eql 0
    end
    #
    it "should read in block" do
        EET.init.should eql 1
        EET.open('/tmp/_eet.cfg', EET::FILE_MODE_READ) do |f|
            f.read('config2').should eql 'test--key'
        end
        EET.shutdown.should eql 0
    end
    #
end