|
| 1 | +package server |
| 2 | + |
| 3 | +import ( |
| 4 | + "testing" |
| 5 | + |
| 6 | + "github.com/stretchr/testify/require" |
| 7 | +) |
| 8 | + |
| 9 | +func TestHandleStmtExecute(t *testing.T) { |
| 10 | + c := Conn{} |
| 11 | + c.stmts = map[uint32]*Stmt{ |
| 12 | + 1: &Stmt{}, |
| 13 | + } |
| 14 | + testcases := []struct { |
| 15 | + data []byte |
| 16 | + errtext string |
| 17 | + }{ |
| 18 | + { |
| 19 | + []byte{0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, |
| 20 | + "ERROR 1243 (HY000): Unknown prepared statement handler (0) given to stmt_execute", |
| 21 | + }, |
| 22 | + { |
| 23 | + []byte{0x1, 0x0, 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0}, |
| 24 | + "ERROR 1105 (HY000): unsupported flags 0xff", |
| 25 | + }, |
| 26 | + { |
| 27 | + []byte{0x1, 0x0, 0x0, 0x0, 0x01, 0x0, 0x0, 0x0, 0x0, 0x0}, |
| 28 | + "ERROR 1105 (HY000): unsupported flag CURSOR_TYPE_READ_ONLY", |
| 29 | + }, |
| 30 | + { |
| 31 | + []byte{0x1, 0x0, 0x0, 0x0, 0x02, 0x0, 0x0, 0x0, 0x0, 0x0}, |
| 32 | + "ERROR 1105 (HY000): unsupported flag CURSOR_TYPE_FOR_UPDATE", |
| 33 | + }, |
| 34 | + { |
| 35 | + []byte{0x1, 0x0, 0x0, 0x0, 0x04, 0x0, 0x0, 0x0, 0x0, 0x0}, |
| 36 | + "ERROR 1105 (HY000): unsupported flag CURSOR_TYPE_SCROLLABLE", |
| 37 | + }, |
| 38 | + } |
| 39 | + |
| 40 | + for _, tc := range testcases { |
| 41 | + _, err := c.handleStmtExecute(tc.data) |
| 42 | + if tc.errtext == "" { |
| 43 | + require.NoError(t, err) |
| 44 | + } else { |
| 45 | + require.ErrorContains(t, err, tc.errtext) |
| 46 | + } |
| 47 | + } |
| 48 | +} |
0 commit comments