diff options
| author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-04-25 20:38:14 +0200 | 
|---|---|---|
| committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-04-25 20:38:14 +0200 | 
| commit | 80c11812e1e1c3c33158cd25eb0db0dba1ced4e7 (patch) | |
| tree | b78958148ae168fa7ea8adbd2a21e96a4adc3178 /spec | |
| parent | 578071f27c8aac182abe2b3627f17e26d01a27fc (diff) | |
| download | ffi-efl-80c11812e1e1c3c33158cd25eb0db0dba1ced4e7.zip ffi-efl-80c11812e1e1c3c33158cd25eb0db0dba1ced4e7.tar.gz  | |
ecore_getopt : prevent FFI::MemoryPointer.from_string beeing GC'ed
Diffstat (limited to 'spec')
| -rw-r--r-- | spec/ecore_getopt_spec.rb | 101 | 
1 files changed, 51 insertions, 50 deletions
diff --git a/spec/ecore_getopt_spec.rb b/spec/ecore_getopt_spec.rb index 87c4c33..6f5c7f0 100644 --- a/spec/ecore_getopt_spec.rb +++ b/spec/ecore_getopt_spec.rb @@ -11,6 +11,7 @@ describe Efl::EcoreGetopt do          #          @p = Efl::EcoreGetopt::Parser.new :prog =>"Prog", :usage => "Usage", :version => "0.0.0", :copyright => "less", :license => "MIT", :description => "description", :strict => 1          @callback = Proc.new do |parser, desc, string, data, value| +            parser.address.should eql @p.to_ptr.address              string.should eql "my_data"              data.read_string.should eql "cb_data"              value.read_pointer.read_int.should eql 99 @@ -222,54 +223,54 @@ describe Efl::EcoreGetopt do              args = @p.parse ["progname","-bmy_data"]          end      end -#    describe "simple long options" do -#        it "should handle --int" do -#            @values[:int].read_int.should eql 0 -#            args = @p.parse ["progname","--int=666"] -#            @values[:int].read_int.should eql 666 -#        end -#        it "should handle --double" do -#            @values[:double].read_double.should eql 3.1415926 -#            args = @p.parse ["progname","--double=6.66"] -#            @values[:double].read_double.should eql 6.66 -#        end -#        it "should handle --short" do -#            @values[:short].read_short.should eql 9 -#            args = @p.parse ["progname","--short=125"] -#            @values[:short].read_short.should eql 125 -#        end -#        it "should handle --long" do -#            @values[:long].read_long.should eql 666 -#            args = @p.parse ["progname","--long=69"] -#            @values[:long].read_long.should eql 69 -#        end -#        it "should handle --const" do -#            @values[:const].read_int.should eql -666 -#            args = @p.parse ["progname","--const"] -#            @values[:const].read_int.should eql 123456 -#        end -#        it "should handle --true" do -#            @values[:false].read_uchar.should eql 0 -#            args = @p.parse ["progname","--true"] -#            @values[:false].read_uchar.should eql 1 -#        end -#        it "should handle --false" do -#            @values[:true].read_uchar.should eql 1 -#            args = @p.parse ["progname","--false"] -#            @values[:true].read_uchar.should eql 0 -#        end -#        it "should handle --many" do -#            @values[:choice].read_pointer.should eql FFI::Pointer::NULL -#            args = @p.parse ["progname","--many=ch3"] -#            @values[:choice].read_pointer.read_string.should eql "ch3" -#        end -#        it "should handle --count" do -#            @values[:count].read_int.should eql 664 -#            args = @p.parse ["progname","--count","--count"] -#            @values[:count].read_int.should eql 666 -#        end -#        it "should handle --callback" do -#            args = @p.parse ["progname","--callback=my_data"] -#        end -#    end +    describe "simple long options" do +        it "should handle --int" do +            @values[:int].read_int.should eql 0 +            args = @p.parse ["progname","--int=666"] +            @values[:int].read_int.should eql 666 +        end +        it "should handle --double" do +            @values[:double].read_double.should eql 3.1415926 +            args = @p.parse ["progname","--double=6.66"] +            @values[:double].read_double.should eql 6.66 +        end +        it "should handle --short" do +            @values[:short].read_short.should eql 9 +            args = @p.parse ["progname","--short=125"] +            @values[:short].read_short.should eql 125 +        end +        it "should handle --long" do +            @values[:long].read_long.should eql 666 +            args = @p.parse ["progname","--long=69"] +            @values[:long].read_long.should eql 69 +        end +        it "should handle --const" do +            @values[:const].read_int.should eql -666 +            args = @p.parse ["progname","--const"] +            @values[:const].read_int.should eql 123456 +        end +        it "should handle --true" do +            @values[:false].read_uchar.should eql 0 +            args = @p.parse ["progname","--true"] +            @values[:false].read_uchar.should eql 1 +        end +        it "should handle --false" do +            @values[:true].read_uchar.should eql 1 +            args = @p.parse ["progname","--false"] +            @values[:true].read_uchar.should eql 0 +        end +        it "should handle --many" do +            @values[:choice].read_pointer.should eql FFI::Pointer::NULL +            args = @p.parse ["progname","--many=ch3"] +            @values[:choice].read_pointer.read_string.should eql "ch3" +        end +        it "should handle --count" do +            @values[:count].read_int.should eql 664 +            args = @p.parse ["progname","--count","--count"] +            @values[:count].read_int.should eql 666 +        end +        it "should handle --callback" do +            args = @p.parse ["progname","--callback=my_data"] +        end +    end  end  | 
