GithubHelp home page GithubHelp logo

Comments (2)

jinq0123 avatar jinq0123 commented on August 16, 2024

I need the test data.

In my test, it encodes and decodes correctly.

Add in test.proto:

message A
{
    repeated uint64 img_pos = 1 [packed=true];
}

message AAA
{
    enum enum_win_type { WIN_TYPE_UNSPECIFIED = 0; WIN_TYPE_1 = 1; }
    repeated enum_win_type enType = 1 [packed=true];
    repeated A win_pos = 2;
}

Add test in test.lua and run it:

-- test for issue #11: Can't resolve this format of proto3
function M.test_packed2()
    local msg_a = {img_pos = {1,2,3}}
    local msg = { enType = {1, 1, 1}, win_pos = {msg_a, msg_a, msg_a} }
    local s = pb.encode("test.AAA", msg)
    local msg2 = pb.decode("test.AAA", s)
    print(require("inspect")(msg2))
    assert(msg2.win_pos[1].img_pos[3] == 3)
end 
λ lua53pp test.lua                  
{                                   
  enType = { 1, 1, 1 },             
  win_pos = { {                     
      img_pos = { 1, 2, 3 }         
    }, {                            
      img_pos = { 1, 2, 3 }         
    }, {                            
      img_pos = { 1, 2, 3 }         
    } }                             
}                                   
Test OK!                            

from luapbintf.

eeeeegit avatar eeeeegit commented on August 16, 2024

ok, thanks, I will check my code, maybe the reason is I use luajit instead of Lua 5.3, I am not sure not, by the way, thank you for test.

from luapbintf.

Related Issues (20)

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.