switch case default tests
This commit is contained in:
		
							parent
							
								
									0dac524c62
								
							
						
					
					
						commit
						9590f43442
					
				
							
								
								
									
										88
									
								
								node/stmt/t_switch_case_default_test.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										88
									
								
								node/stmt/t_switch_case_default_test.go
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,88 @@ | |||||||
|  | package stmt_test | ||||||
|  | 
 | ||||||
|  | import ( | ||||||
|  | 	"bytes" | ||||||
|  | 	"testing" | ||||||
|  | 
 | ||||||
|  | 	"github.com/z7zmey/php-parser/node/scalar" | ||||||
|  | 
 | ||||||
|  | 	"github.com/z7zmey/php-parser/node" | ||||||
|  | 	"github.com/z7zmey/php-parser/node/stmt" | ||||||
|  | 	"github.com/z7zmey/php-parser/php5" | ||||||
|  | 	"github.com/z7zmey/php-parser/php7" | ||||||
|  | ) | ||||||
|  | 
 | ||||||
|  | func TestAltSwitch(t *testing.T) { | ||||||
|  | 	src := `<?  | ||||||
|  | 		switch (1) : | ||||||
|  | 			case 1: | ||||||
|  | 			default: | ||||||
|  | 			case 2; | ||||||
|  | 		endswitch; | ||||||
|  | 	` | ||||||
|  | 
 | ||||||
|  | 	expected := &stmt.StmtList{ | ||||||
|  | 		Stmts: []node.Node{ | ||||||
|  | 			&stmt.Switch{ | ||||||
|  | 				Cond: &scalar.Lnumber{Value: "1"}, | ||||||
|  | 				Cases: []node.Node{ | ||||||
|  | 					&stmt.Case{ | ||||||
|  | 						Cond: &scalar.Lnumber{Value: "1"}, | ||||||
|  | 						Stmts: []node.Node{}, | ||||||
|  | 					}, | ||||||
|  | 					&stmt.Default{ | ||||||
|  | 						Stmts: []node.Node{}, | ||||||
|  | 					}, | ||||||
|  | 					&stmt.Case{ | ||||||
|  | 						Cond: &scalar.Lnumber{Value: "2"}, | ||||||
|  | 						Stmts: []node.Node{}, | ||||||
|  | 					}, | ||||||
|  | 				}, | ||||||
|  | 			}, | ||||||
|  | 		}, | ||||||
|  | 	} | ||||||
|  | 
 | ||||||
|  | 	actual, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php") | ||||||
|  | 	assertEqual(t, expected, actual) | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 	actual, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php") | ||||||
|  | 	assertEqual(t, expected, actual) | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | func TestSwitch(t *testing.T) { | ||||||
|  | 	src := `<?  | ||||||
|  | 		switch (1) { | ||||||
|  | 			case 1: break; | ||||||
|  | 			case 2; break; | ||||||
|  | 		} | ||||||
|  | 	` | ||||||
|  | 
 | ||||||
|  | 	expected := &stmt.StmtList{ | ||||||
|  | 		Stmts: []node.Node{ | ||||||
|  | 			&stmt.Switch{ | ||||||
|  | 				Cond: &scalar.Lnumber{Value: "1"}, | ||||||
|  | 				Cases: []node.Node{ | ||||||
|  | 					&stmt.Case{ | ||||||
|  | 						Cond: &scalar.Lnumber{Value: "1"}, | ||||||
|  | 						Stmts: []node.Node{ | ||||||
|  | 							&stmt.Break{}, | ||||||
|  | 						}, | ||||||
|  | 					}, | ||||||
|  | 					&stmt.Case{ | ||||||
|  | 						Cond: &scalar.Lnumber{Value: "2"}, | ||||||
|  | 						Stmts: []node.Node{ | ||||||
|  | 							&stmt.Break{}, | ||||||
|  | 						}, | ||||||
|  | 					}, | ||||||
|  | 				}, | ||||||
|  | 			}, | ||||||
|  | 		}, | ||||||
|  | 	} | ||||||
|  | 
 | ||||||
|  | 	actual, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php") | ||||||
|  | 	assertEqual(t, expected, actual) | ||||||
|  | 
 | ||||||
|  | 	actual, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php") | ||||||
|  | 	assertEqual(t, expected, actual) | ||||||
|  | } | ||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user