Giter Club home page Giter Club logo

Comments (4)

l3pp4rd avatar l3pp4rd commented on May 20, 2024 3

closing it, if there are still some questions - reopen

from go-sqlmock.

thurt avatar thurt commented on May 20, 2024 3

fyi for future readers: you may find regexp.QuoteMeta helpful. It will automatically escape special regexp characters.

from go-sqlmock.

l3pp4rd avatar l3pp4rd commented on May 20, 2024

hi, sorry for the late answer. could you give an example of the query you had troubles with?
currently the query stripper does it in a simple way, by stripping only whitespace. I agree this is not a perfect solution it may be improved, cheers.

from go-sqlmock.

l3pp4rd avatar l3pp4rd commented on May 20, 2024

Well, the issue you had, most probably is because you haven't escaped regular expression special characters. See the commit reference above. And it would be a good practice to keep your query matching short, because sqlmock matches them in the given order. If you expect a query "SELECT" and an update query is fired, then a test will fail, because it matches queries in order. So you can keep them like:

sqlmock.ExpectQuery("SELECT (.*) FROM orders")
sqlmock.ExpectQuery("SELECT (.*) FROM users")
sqlmock.ExpectQuery("SELECT (.*) FROM orders")
sqlmock.ExpectExec("UPDATE orders")
sqlmock.ExpectExec("INSERT INTO products")

If queries are not fired in the same order, the test would fail.
The query stripper only strips whitespace, newlines and such and makes only a single space between sql parts.

from go-sqlmock.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.