Browse Source

Cover by tests fixQuery func

Volodymyr Tkach 2 years ago
parent
commit
2dd4cf5cdc
1 changed files with 12 additions and 0 deletions
  1. 12 0
      gosql/common/common_test.go

+ 12 - 0
gosql/common/common_test.go

@@ -50,6 +50,18 @@ var _ = Describe("common", func() {
 		})
 	})
 
+	Context("fixQuery", func() {
+		It("replace param for MySQL driver", func() {
+			sql := "select id, name from users where id=$1"
+			Expect(common.FixQuery(sql)).To(Equal("select id, name from users where id=?"))
+		})
+
+		It("replace all params for MySQL driver", func() {
+			sql := "insert into users set name=$1 where id=$2"
+			Expect(common.FixQuery(sql)).To(Equal("insert into users set name=? where id=?"))
+		})
+	})
+
 	Context("ParseUrl", func() {
 		Context("Success", func() {
 			It("for MySQL", func() {