/** * @author Edouard DUPIN * @copyright 2017, Edouard DUPIN, all right reserved * @license MPL-2 (see license file) */ #include #include #include #include #include #include static etk::String source = "action_A;struct MyStruct{action_B;}action_D;"; TEST(testStruct, brace_0000) { estyle::Generator interface; //interface.properties.set("brace-struct-in-new-line-before", "true"); //interface.properties.set("brace-struct-in-new-line-after", "true"); //interface.properties.set("brace-struct-in-space-before", "true"); //interface.properties.set("brace-struct-in-space-after", "true"); //interface.properties.set("brace-struct-out-new-line-before", "true"); //interface.properties.set("brace-struct-out-new-line-after", "true"); //interface.properties.set("brace-struct-out-space-before", "true"); //interface.properties.set("brace-struct-out-space-after", "true"); etk::String outRef = "action_A;struct MyStruct{action_B;}action_D;"; etk::String output = interface.process(source); EXPECT_EQ(output, outRef); } TEST(testStruct, brace_1000) { estyle::Generator interface; interface.properties.set("brace-struct-in-new-line-before", "true"); //interface.properties.set("brace-struct-in-new-line-after", "true"); //interface.properties.set("brace-struct-in-space-before", "true"); //interface.properties.set("brace-struct-in-space-after", "true"); interface.properties.set("brace-struct-out-new-line-before", "true"); //interface.properties.set("brace-struct-out-new-line-after", "true"); //interface.properties.set("brace-struct-out-space-before", "true"); //interface.properties.set("brace-struct-out-space-after", "true"); etk::String outRef = "action_A;struct MyStruct\n{action_B;\n}action_D;"; etk::String output = interface.process(source); EXPECT_EQ(output, outRef); } TEST(testStruct, brace_1010) { estyle::Generator interface; interface.properties.set("brace-struct-in-new-line-before", "true"); //interface.properties.set("brace-struct-in-new-line-after", "true"); interface.properties.set("brace-struct-in-space-before", "true"); //interface.properties.set("brace-struct-in-space-after", "true"); interface.properties.set("brace-struct-out-new-line-before", "true"); //interface.properties.set("brace-struct-out-new-line-after", "true"); interface.properties.set("brace-struct-out-space-before", "true"); //interface.properties.set("brace-struct-out-space-after", "true"); etk::String outRef = "action_A;struct MyStruct\n{action_B;\n}action_D;"; etk::String output = interface.process(source); EXPECT_EQ(output, outRef); } TEST(testStruct, brace_1011) { estyle::Generator interface; interface.properties.set("brace-struct-in-new-line-before", "true"); //interface.properties.set("brace-struct-in-new-line-after", "true"); interface.properties.set("brace-struct-in-space-before", "true"); interface.properties.set("brace-struct-in-space-after", "true"); interface.properties.set("brace-struct-out-new-line-before", "true"); //interface.properties.set("brace-struct-out-new-line-after", "true"); interface.properties.set("brace-struct-out-space-before", "true"); interface.properties.set("brace-struct-out-space-after", "true"); etk::String outRef = "action_A;struct MyStruct\n{ action_B;\n} action_D;"; etk::String output = interface.process(source); EXPECT_EQ(output, outRef); } TEST(testStruct, brace_1100) { estyle::Generator interface; interface.properties.set("brace-struct-in-new-line-before", "true"); interface.properties.set("brace-struct-in-new-line-after", "true"); //interface.properties.set("brace-struct-in-space-before", "true"); //interface.properties.set("brace-struct-in-space-after", "true"); interface.properties.set("brace-struct-out-new-line-before", "true"); interface.properties.set("brace-struct-out-new-line-after", "true"); //interface.properties.set("brace-struct-out-space-before", "true"); //interface.properties.set("brace-struct-out-space-after", "true"); etk::String outRef = "action_A;struct MyStruct\n{\n\taction_B;\n}\naction_D;"; etk::String output = interface.process(source); EXPECT_EQ(output, outRef); } TEST(testStruct, brace_1101) { estyle::Generator interface; interface.properties.set("brace-struct-in-new-line-before", "true"); interface.properties.set("brace-struct-in-new-line-after", "true"); //interface.properties.set("brace-struct-in-space-before", "true"); interface.properties.set("brace-struct-in-space-after", "true"); interface.properties.set("brace-struct-out-new-line-before", "true"); interface.properties.set("brace-struct-out-new-line-after", "true"); //interface.properties.set("brace-struct-out-space-before", "true"); interface.properties.set("brace-struct-out-space-after", "true"); etk::String outRef = "action_A;struct MyStruct\n{\n\taction_B;\n}\naction_D;"; etk::String output = interface.process(source); EXPECT_EQ(output, outRef); } TEST(testStruct, brace_1110) { estyle::Generator interface; interface.properties.set("brace-struct-in-new-line-before", "true"); interface.properties.set("brace-struct-in-new-line-after", "true"); interface.properties.set("brace-struct-in-space-before", "true"); //interface.properties.set("brace-struct-in-space-after", "true"); interface.properties.set("brace-struct-out-new-line-before", "true"); interface.properties.set("brace-struct-out-new-line-after", "true"); interface.properties.set("brace-struct-out-space-before", "true"); //interface.properties.set("brace-struct-out-space-after", "true"); etk::String outRef = "action_A;struct MyStruct\n{\n\taction_B;\n}\naction_D;"; etk::String output = interface.process(source); EXPECT_EQ(output, outRef); } TEST(testStruct, brace_1111) { estyle::Generator interface; interface.properties.set("brace-struct-in-new-line-before", "true"); interface.properties.set("brace-struct-in-new-line-after", "true"); interface.properties.set("brace-struct-in-space-before", "true"); interface.properties.set("brace-struct-in-space-after", "true"); interface.properties.set("brace-struct-out-new-line-before", "true"); interface.properties.set("brace-struct-out-new-line-after", "true"); interface.properties.set("brace-struct-out-space-before", "true"); interface.properties.set("brace-struct-out-space-after", "true"); etk::String outRef = "action_A;struct MyStruct\n{\n\taction_B;\n}\naction_D;"; etk::String output = interface.process(source); EXPECT_EQ(output, outRef); } TEST(testStruct, brace_1001) { estyle::Generator interface; interface.properties.set("brace-struct-in-new-line-before", "true"); //interface.properties.set("brace-struct-in-new-line-after", "true"); //interface.properties.set("brace-struct-in-space-before", "true"); interface.properties.set("brace-struct-in-space-after", "true"); interface.properties.set("brace-struct-out-new-line-before", "true"); //interface.properties.set("brace-struct-out-new-line-after", "true"); //interface.properties.set("brace-struct-out-space-before", "true"); interface.properties.set("brace-struct-out-space-after", "true"); etk::String outRef = "action_A;struct MyStruct\n{ action_B;\n} action_D;"; etk::String output = interface.process(source); EXPECT_EQ(output, outRef); } TEST(testStruct, brace_0100) { estyle::Generator interface; //interface.properties.set("brace-struct-in-new-line-before", "true"); interface.properties.set("brace-struct-in-new-line-after", "true"); //interface.properties.set("brace-struct-in-space-before", "true"); //interface.properties.set("brace-struct-in-space-after", "true"); //interface.properties.set("brace-struct-out-new-line-before", "true"); interface.properties.set("brace-struct-out-new-line-after", "true"); //interface.properties.set("brace-struct-out-space-before", "true"); //interface.properties.set("brace-struct-out-space-after", "true"); etk::String outRef = "action_A;struct MyStruct{\n\taction_B;}\naction_D;"; etk::String output = interface.process(source); EXPECT_EQ(output, outRef); } TEST(testStruct, brace_0101) { estyle::Generator interface; //interface.properties.set("brace-struct-in-new-line-before", "true"); interface.properties.set("brace-struct-in-new-line-after", "true"); //interface.properties.set("brace-struct-in-space-before", "true"); interface.properties.set("brace-struct-in-space-after", "true"); //interface.properties.set("brace-struct-out-new-line-before", "true"); interface.properties.set("brace-struct-out-new-line-after", "true"); //interface.properties.set("brace-struct-out-space-before", "true"); interface.properties.set("brace-struct-out-space-after", "true"); etk::String outRef = "action_A;struct MyStruct{\n\taction_B;}\naction_D;"; etk::String output = interface.process(source); EXPECT_EQ(output, outRef); } TEST(testStruct, brace_0110) { estyle::Generator interface; //interface.properties.set("brace-struct-in-new-line-before", "true"); interface.properties.set("brace-struct-in-new-line-after", "true"); interface.properties.set("brace-struct-in-space-before", "true"); //interface.properties.set("brace-struct-in-space-after", "true"); //interface.properties.set("brace-struct-out-new-line-before", "true"); interface.properties.set("brace-struct-out-new-line-after", "true"); interface.properties.set("brace-struct-out-space-before", "true"); //interface.properties.set("brace-struct-out-space-after", "true"); etk::String outRef = "action_A;struct MyStruct {\n\taction_B; }\naction_D;"; etk::String output = interface.process(source); EXPECT_EQ(output, outRef); } TEST(testStruct, brace_0010) { estyle::Generator interface; //interface.properties.set("brace-struct-in-new-line-before", "true"); //interface.properties.set("brace-struct-in-new-line-after", "true"); interface.properties.set("brace-struct-in-space-before", "true"); //interface.properties.set("brace-struct-in-space-after", "true"); //interface.properties.set("brace-struct-out-new-line-before", "true"); //interface.properties.set("brace-struct-out-new-line-after", "true"); interface.properties.set("brace-struct-out-space-before", "true"); //interface.properties.set("brace-struct-out-space-after", "true"); etk::String outRef = "action_A;struct MyStruct {action_B; }action_D;"; etk::String output = interface.process(source); EXPECT_EQ(output, outRef); } TEST(testStruct, brace_0011) { estyle::Generator interface; //interface.properties.set("brace-struct-in-new-line-before", "true"); //interface.properties.set("brace-struct-in-new-line-after", "true"); interface.properties.set("brace-struct-in-space-before", "true"); interface.properties.set("brace-struct-in-space-after", "true"); //interface.properties.set("brace-struct-out-new-line-before", "true"); //interface.properties.set("brace-struct-out-new-line-after", "true"); interface.properties.set("brace-struct-out-space-before", "true"); interface.properties.set("brace-struct-out-space-after", "true"); etk::String outRef = "action_A;struct MyStruct { action_B; } action_D;"; etk::String output = interface.process(source); EXPECT_EQ(output, outRef); } TEST(testStruct, brace_0111) { estyle::Generator interface; //interface.properties.set("brace-struct-in-new-line-before", "true"); interface.properties.set("brace-struct-in-new-line-after", "true"); interface.properties.set("brace-struct-in-space-before", "true"); interface.properties.set("brace-struct-in-space-after", "true"); //interface.properties.set("brace-struct-out-new-line-before", "true"); interface.properties.set("brace-struct-out-new-line-after", "true"); interface.properties.set("brace-struct-out-space-before", "true"); interface.properties.set("brace-struct-out-space-after", "true"); etk::String outRef = "action_A;struct MyStruct {\n\taction_B; }\naction_D;"; etk::String output = interface.process(source); EXPECT_EQ(output, outRef); } TEST(testStruct, brace_0001) { estyle::Generator interface; //interface.properties.set("brace-struct-in-new-line-before", "true"); //interface.properties.set("brace-struct-in-new-line-after", "true"); //interface.properties.set("brace-struct-in-space-before", "true"); interface.properties.set("brace-struct-in-space-after", "true"); //interface.properties.set("brace-struct-out-new-line-before", "true"); //interface.properties.set("brace-struct-out-new-line-after", "true"); //interface.properties.set("brace-struct-out-space-before", "true"); interface.properties.set("brace-struct-out-space-after", "true"); etk::String outRef = "action_A;struct MyStruct{ action_B;} action_D;"; etk::String output = interface.process(source); EXPECT_EQ(output, outRef); }