Git Product home page Git Product logo

Comments (3)

lwoggardner avatar lwoggardner commented on July 24, 2024

This spec passes on both 1.8.7 (p302 and p358) and 1.9.3

      it "should read over null characters in a real file" do
           file_stat.size = 12
           File.open("/tmp/nulltest","w") { |f| f.print "hello\000world\000" }

           mockfs.stub(:getattr).with(anything(),"/testnull").and_return(file_stat)

           mockfs.stub(:read) { |ctx,path,size,offset,ffi|
               IO.read("/tmp/nulltest",size,offset)
           }

           with_fuse(mountpoint,mockfs) do
               File.open("#{mountpoint}/testnull") do |f|
                   val = f.gets
                   val.should == "hello\000world\000"
                   val.size.should == 12
                   puts val
               end
           end
       end

from rfuse.

lwoggardner avatar lwoggardner commented on July 24, 2024

so next steps will be some more debugging.

Are you running your fs via RFuse::FuseDelegator? - if so you can run ruby with -debug (or just set $DEBUG = true somewhere). This will output to $stderr the rfuse methods and arguments as they are called.

If you are subclassing RFuse::Fuse directly then I suggest refactoring to use FuseDelegator :-)

Also passing the mount option "-odebug" will cause the Fuse library itself to output debugging statements

If you could do that and attach the output somewhere that will help.

from rfuse.

lwoggardner avatar lwoggardner commented on July 24, 2024

Assume issue is resolved as invalid.

from rfuse.

Related Issues (5)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.