Coder Social home page Coder Social logo

How to expect a prepared insert ? about go-sqlmock HOT 5 CLOSED

 avatar commented on May 18, 2024
How to expect a prepared insert ?

from go-sqlmock.

Comments (5)

l3pp4rd avatar l3pp4rd commented on May 18, 2024 8

Hi, you can look into the tests of sqlmock for more details. the error message says, that you must mock the result Exec should return

func TestLogHistory(t *testing.T) {
	var mock sqlmock.Sqlmock
	var err error
	db, mock, err = sqlmock.New()
	if err != nil {
		t.Fatal(err)
	}

	mock.ExpectPrepare("INSERT INTO").ExpectExec().WithArgs("2").WillReturnResult(sqlmock.NewResult(1, 1))

	stmt, err := db.Prepare("INSERT INTO history VALUES(?)")
	if err != nil {
		panic(err)
	}

	if _, err := stmt.Exec("2"); err != nil {
		t.Fatal(err)
	}

	if err := mock.ExpectationsWereMet(); err != nil {
		t.Fatal(err)
	}
}

Because it has to produce the result with a number off affected rows and last insert ID if available.

from go-sqlmock.

 avatar commented on May 18, 2024

omg wow, I'm such a doofus, thank you so much

from go-sqlmock.

l3pp4rd avatar l3pp4rd commented on May 18, 2024

happens for everyone, cheers ;)

from go-sqlmock.

ivaylopivanov avatar ivaylopivanov commented on May 18, 2024

@l3pp4rd I'm not able to use WillReturnRows with ExpectPrepare and I need that in order to make a select query. Is there a workaround?

from go-sqlmock.

ivaylopivanov avatar ivaylopivanov commented on May 18, 2024

OK, found it in the tests ExpectQuery

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.