Add php protobuffer support for transition to GTFS-realtime
[busui.git] / lib / Protobuf-PHP / tests / Protobuf.Codec.JsonIndexed.spec.php
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<?php
 
require_once __DIR__ . '/../library/DrSlump/Protobuf.php';
 
use \DrSlump\Protobuf;
 
Protobuf::autoload();
 
include_once __DIR__ . '/protos/simple.php';
include_once __DIR__ . '/protos/repeated.php';
include_once __DIR__ . '/protos/addressbook.php';
 
describe "JSON Indexed Codec"
 
    before
        Protobuf::setDefaultCodec(new Protobuf\Codec\JsonIndexed);
    end
 
    describe "serialize"
 
        it "should serialize a simple message"
            $simple = new Tests\Simple();
            $simple->string = 'FOO';
            $simple->int32 = 1000;
            $json = Protobuf::encode($simple);
            $json. should. eq. '["59",1000,"FOO"]';
        end.
 
        it. "a message with repeated fields"
 
              $repeated = new Tests\Repeated();
              $repeated->addString('one');
              $repeated->addString('two');
              $repeated->addString('three');
              $bin = Protobuf::encode($repeated);
              $bin should be '["1",["one","two","three"]]';
 
              $repeated = new Tests\Repeated();
              $repeated->addInt(1);
              $repeated->addInt(2);
              $repeated->addInt(3);
              $bin = Protobuf::encode($repeated);
              $bin should be '["2",[1,2,3]]';
 
              $repeated = new Tests\Repeated();
              $nested = new Tests\Repeated\Nested();
              $nested->setId(1);
              $repeated->addNested($nested);
              $nested = new Tests\Repeated\Nested();
              $nested->setId(2);
              $repeated->addNested($nested);
              $nested = new Tests\Repeated\Nested();
              $nested->setId(3);
              $repeated->addNested($nested);
              $json = Protobuf::encode($repeated);
              $json should eq '["3",[["1",1],["1",2],["1",3]]]';
          end.
 
        it. "a complex message"
 
            $book = new Tests\AddressBook();
            $person = new Tests\Person();
            $person->name = 'John Doe';
            $person->id = 2051;
            $person->email = 'john.doe@gmail.com';
            $phone = new Tests\Person\PhoneNumber;
            $phone->number = '1231231212';
            $phone->type = Tests\Person\PhoneType::HOME;
            $person->addPhone($phone);
            $phone = new Tests\Person\PhoneNumber;
            $phone->number = '55512321312';
            $phone->type = Tests\Person\PhoneType::MOBILE;
            $person->addPhone($phone);
            $book->addPerson($person);
 
            $person = new Tests\Person();
            $person->name = 'Iván Montes';
            $person->id = 23;
            $person->email = 'drslump@pollinimini.net';
            $phone = new Tests\Person\PhoneNumber;
            $phone->number = '3493123123';
            $phone->type = Tests\Person\PhoneType::WORK;
            $person->addPhone($phone);
            $book->addPerson($person);
 
            $json = Protobuf::encode($book);
 
            $expected = '[
                 "1",
                 [
                     [
                         "1234",
                         "John Doe",
                         2051,
                         "john.doe@gmail.com",
                         [
                             ["12","1231231212",1],
                             ["12","55512321312",0]
                         ]
                     ],
                     [
                         "1234",
                         "Iv\u00e1n Montes",
                         23,
                         "drslump@pollinimini.net",
                         [
                            ["12","3493123123",2]
                         ]
                     ]
                 ]
             ]';
 
             $expected = preg_replace('/\n\s*/', '', $expected);
 
             $json should be $expected;
         end.
    end;
 
    describe "unserialize"
 
        it "should unserialize a simple message"
            $json = '["59",1000,"FOO"]';
            $simple = Protobuf::decode('Tests\Simple', $json);
            $simple should be instanceof 'Tests\Simple';
            $simple->string should equal 'FOO';
            $simple->int32 should equal 1000;
        end.
 
        it "a message with repeated fields"
 
            $json = '["1",["one","two","three"]]';
            $repeated = Protobuf::decode('Tests\Repeated', $json);
            $repeated->getString() should eq array('one', 'two', 'three');
 
            $json = '["2",[1,2,3]]';
            $repeated = Protobuf::decode('Tests\Repeated', $json);
            $repeated should be instanceof 'Tests\Repeated';
            $repeated->getInt() should eq array(1,2,3);
 
            $json = '["3",[["1",1],["1",2],["1",3]]]';
            $repeated = Protobuf::decode('Tests\Repeated', $json);
            $repeated should be instanceof 'Tests\Repeated';
            foreach ($repeated->getNested() as $i=>$nested) {
                $nested->getId() should eq ($i+1);
            }
        end.
 
        it "a complex message"
            $json = '[
                "1",
                [
                    [
                        "1234",
                        "John Doe",
                        2051,
                        "john.doe@gmail.com",
                        [
                            ["12","1231231212",1],
                            ["12","55512321312",0]
                        ]
                    ],
                    [
                        "1234",
                        "Iv\u00e1n Montes",
                        23,
                        "drslump@pollinimini.net",
                        [
                           ["12","3493123123",2]
                        ]
                    ]
                ]
            ]';
 
            $json = preg_replace('/\n\s*/', '', $json);
 
            $complex = Protobuf::decode('Tests\AddressBook', $json);
            count($complex->person) should eq 2;
            $complex->getPerson(0)->name should eq 'John Doe';
            $complex->getPerson(1)->name should eq 'Iván Montes';
            $complex->getPerson(0)->getPhone(1)->number should eq '55512321312';
        end.
 
 
 
    end;
end;