blob: ad2c3b8289031456f9cbe4e9c3e7621c43064dfb [file] [log] [blame]
Andreas Wundsame916d6f2013-07-30 11:33:58 -07001//:: # Copyright 2013, Big Switch Networks, Inc.
2//:: #
3//:: # LoxiGen is licensed under the Eclipse Public License, version 1.0 (EPL), with
4//:: # the following special exception:
5//:: #
6//:: # LOXI Exception
7//:: #
8//:: # As a special exception to the terms of the EPL, you may distribute libraries
9//:: # generated by LoxiGen (LoxiGen Libraries) under the terms of your choice, provided
10//:: # that copyright and licensing notices generated by LoxiGen are not altered or removed
11//:: # from the LoxiGen Libraries and the notice provided below is (i) included in
12//:: # the LoxiGen Libraries, if distributed in source code form and (ii) included in any
13//:: # documentation for the LoxiGen Libraries, if distributed in binary form.
14//:: #
15//:: # Notice: "Copyright 2013, Big Switch Networks, Inc. This library was generated by the LoxiGen Compiler."
16//:: #
17//:: # You may not use this file except in compliance with the EPL or LOXI Exception. You may obtain
18//:: # a copy of the EPL at:
19//:: #
20//:: # http::: #www.eclipse.org/legal/epl-v10.html
21//:: #
22//:: # Unless required by applicable law or agreed to in writing, software
23//:: # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
24//:: # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
25//:: # EPL for the specific language governing permissions and limitations
26//:: # under the EPL.
27//::
28//:: from loxi_ir import *
29//:: import itertools
Yotam Harchol595c6442013-09-27 16:29:08 -070030//:: import java_gen.java_model as java_model
Andreas Wundsame916d6f2013-07-30 11:33:58 -070031//:: include('_copyright.java')
32
33//:: include('_autogen.java')
34
35package ${test.package};
36
37//:: include("_imports.java", msg=msg)
38import org.junit.Before;
39import org.junit.Test;
40import static org.junit.Assert.*;
41
Andreas Wundsamc8912c12013-11-15 13:44:48 -080042import org.hamcrest.CoreMatchers;
43
44
Andreas Wundsame916d6f2013-07-30 11:33:58 -070045public class ${test.name} {
Yotam Harchol595c6442013-09-27 16:29:08 -070046 //:: factory = java_model.model.factory_of(test.interface)
Andreas Wundsame916d6f2013-07-30 11:33:58 -070047 //:: var_type = msg.interface.name
48 //:: var_name = msg.interface.variable_name
Yotam Harchol595c6442013-09-27 16:29:08 -070049 //:: builder_method = factory.method_name(msg.interface)
50 //:: factory_impl = java_model.model.factory_of(test.interface).of_version(test.java_class.version).name
Yotam Harchol77e6cf82013-09-27 16:36:18 -070051 ${factory.name if factory.name is not None else "OFFactory"} factory;
Andreas Wundsame916d6f2013-07-30 11:33:58 -070052
53 final static byte[] ${msg.constant_name}_SERIALIZED =
54 new byte[] { ${", ".join("%s0x%x" % (("" if ord(c)<128 else "(byte) "), ord(c)) for c in test_data["binary"] ) } };
55
56 @Before
57 public void setup() {
Yotam Harchol595c6442013-09-27 16:29:08 -070058 factory = ${factory_impl + ".INSTANCE" if factory_impl is not None else "OFFactories.getFactory(OFVersion." + version.constant_version + ")"};
Andreas Wundsame916d6f2013-07-30 11:33:58 -070059 }
60
61 //:: if "java" in test_data:
62 @Test
63 public void testWrite() {
Yotam Harchol595c6442013-09-27 16:29:08 -070064 ${var_type}.Builder builder = factory.${builder_method}();
Andreas Wundsame916d6f2013-07-30 11:33:58 -070065 ${test_data["java"]};
Andreas Wundsame0d52be2013-08-22 07:52:13 -070066 ${var_type} ${var_name} = builder.build();
Andreas Wundsame916d6f2013-07-30 11:33:58 -070067 ChannelBuffer bb = ChannelBuffers.dynamicBuffer();
68 ${var_name}.writeTo(bb);
69 byte[] written = new byte[bb.readableBytes()];
70 bb.readBytes(written);
71
Andreas Wundsamc8912c12013-11-15 13:44:48 -080072 assertThat(written, CoreMatchers.equalTo(${msg.constant_name}_SERIALIZED));
Andreas Wundsame916d6f2013-07-30 11:33:58 -070073 }
74
75 @Test
76 public void testRead() throws Exception {
Yotam Harchol595c6442013-09-27 16:29:08 -070077 ${var_type}.Builder builder = factory.${builder_method}();
Andreas Wundsame916d6f2013-07-30 11:33:58 -070078 ${test_data["java"]};
Andreas Wundsame0d52be2013-08-22 07:52:13 -070079 ${var_type} ${var_name}Built = builder.build();
Andreas Wundsame916d6f2013-07-30 11:33:58 -070080
81 ChannelBuffer input = ChannelBuffers.copiedBuffer(${msg.constant_name}_SERIALIZED);
82
83 // FIXME should invoke the overall reader once implemented
84 ${var_type} ${var_name}Read = ${msg.name}.READER.readFrom(input);
Andreas Wundsam45da2d42013-10-23 15:27:15 -070085 assertEquals(${msg.constant_name}_SERIALIZED.length, input.readerIndex());
Andreas Wundsame916d6f2013-07-30 11:33:58 -070086
Andreas Wundsam001b1822013-08-02 22:25:55 -070087 assertEquals(${var_name}Built, ${var_name}Read);
Andreas Wundsame916d6f2013-07-30 11:33:58 -070088 }
89 //:: else:
90 // FIXME: No java stanza in test_data for this class. Add for more comprehensive unit testing
91 //:: #endif
92
93 @Test
94 public void testReadWrite() throws Exception {
95 ChannelBuffer input = ChannelBuffers.copiedBuffer(${msg.constant_name}_SERIALIZED);
96
97 // FIXME should invoke the overall reader once implemented
98 ${var_type} ${var_name} = ${msg.name}.READER.readFrom(input);
Andreas Wundsam45da2d42013-10-23 15:27:15 -070099 assertEquals(${msg.constant_name}_SERIALIZED.length, input.readerIndex());
Andreas Wundsame916d6f2013-07-30 11:33:58 -0700100
101 // write message again
102 ChannelBuffer bb = ChannelBuffers.dynamicBuffer();
103 ${var_name}.writeTo(bb);
104 byte[] written = new byte[bb.readableBytes()];
105 bb.readBytes(written);
106
Andreas Wundsamc8912c12013-11-15 13:44:48 -0800107 assertThat(written, CoreMatchers.equalTo(${msg.constant_name}_SERIALIZED));
Andreas Wundsame916d6f2013-07-30 11:33:58 -0700108 }
109
110}