gopkg.in/rethinkdb/rethinkdb-go.v6@v6.2.2/internal/integration/reql_tests/reql_math_logic_mod_test.go (about)

     1  // Code generated by gen_tests.py and process_polyglot.py.
     2  // Do not edit this file directly.
     3  // The template for this file is located at:
     4  // ../template.go.tpl
     5  package reql_tests
     6  
     7  import (
     8  	"testing"
     9  	"time"
    10  
    11  	"github.com/stretchr/testify/suite"
    12  	r "gopkg.in/rethinkdb/rethinkdb-go.v6"
    13  	"gopkg.in/rethinkdb/rethinkdb-go.v6/internal/compare"
    14  )
    15  
    16  // Tests for the basic usage of the mod operation
    17  func TestMathLogicModSuite(t *testing.T) {
    18  	suite.Run(t, new(MathLogicModSuite))
    19  }
    20  
    21  type MathLogicModSuite struct {
    22  	suite.Suite
    23  
    24  	session *r.Session
    25  }
    26  
    27  func (suite *MathLogicModSuite) SetupTest() {
    28  	suite.T().Log("Setting up MathLogicModSuite")
    29  	// Use imports to prevent errors
    30  	_ = time.Time{}
    31  	_ = compare.AnythingIsFine
    32  
    33  	session, err := r.Connect(r.ConnectOpts{
    34  		Address: url,
    35  	})
    36  	suite.Require().NoError(err, "Error returned when connecting to server")
    37  	suite.session = session
    38  
    39  	r.DBDrop("test").Exec(suite.session)
    40  	err = r.DBCreate("test").Exec(suite.session)
    41  	suite.Require().NoError(err)
    42  	err = r.DB("test").Wait().Exec(suite.session)
    43  	suite.Require().NoError(err)
    44  
    45  }
    46  
    47  func (suite *MathLogicModSuite) TearDownSuite() {
    48  	suite.T().Log("Tearing down MathLogicModSuite")
    49  
    50  	if suite.session != nil {
    51  		r.DB("rethinkdb").Table("_debug_scratch").Delete().Exec(suite.session)
    52  		r.DBDrop("test").Exec(suite.session)
    53  
    54  		suite.session.Close()
    55  	}
    56  }
    57  
    58  func (suite *MathLogicModSuite) TestCases() {
    59  	suite.T().Log("Running MathLogicModSuite: Tests for the basic usage of the mod operation")
    60  
    61  	{
    62  		// math_logic/mod.yaml line #6
    63  		/* 1 */
    64  		var expected_ int = 1
    65  		/* r.expr(10) % 3 */
    66  
    67  		suite.T().Log("About to run line #6: r.Expr(10).Mod(3)")
    68  
    69  		runAndAssert(suite.Suite, expected_, r.Expr(10).Mod(3), suite.session, r.RunOpts{
    70  			GeometryFormat: "raw",
    71  			GroupFormat:    "map",
    72  		})
    73  		suite.T().Log("Finished running line #6")
    74  	}
    75  
    76  	{
    77  		// math_logic/mod.yaml line #7
    78  		/* 1 */
    79  		var expected_ int = 1
    80  		/* 10 % r.expr(3) */
    81  
    82  		suite.T().Log("About to run line #7: r.Mod(10, r.Expr(3))")
    83  
    84  		runAndAssert(suite.Suite, expected_, r.Mod(10, r.Expr(3)), suite.session, r.RunOpts{
    85  			GeometryFormat: "raw",
    86  			GroupFormat:    "map",
    87  		})
    88  		suite.T().Log("Finished running line #7")
    89  	}
    90  
    91  	{
    92  		// math_logic/mod.yaml line #8
    93  		/* 1 */
    94  		var expected_ int = 1
    95  		/* r.expr(10).mod(3) */
    96  
    97  		suite.T().Log("About to run line #8: r.Expr(10).Mod(3)")
    98  
    99  		runAndAssert(suite.Suite, expected_, r.Expr(10).Mod(3), suite.session, r.RunOpts{
   100  			GeometryFormat: "raw",
   101  			GroupFormat:    "map",
   102  		})
   103  		suite.T().Log("Finished running line #8")
   104  	}
   105  
   106  	{
   107  		// math_logic/mod.yaml line #16
   108  		/* -1 */
   109  		var expected_ int = -1
   110  		/* r.expr(-10) % -3 */
   111  
   112  		suite.T().Log("About to run line #16: r.Expr(-10).Mod(-3)")
   113  
   114  		runAndAssert(suite.Suite, expected_, r.Expr(-10).Mod(-3), suite.session, r.RunOpts{
   115  			GeometryFormat: "raw",
   116  			GroupFormat:    "map",
   117  		})
   118  		suite.T().Log("Finished running line #16")
   119  	}
   120  
   121  	{
   122  		// math_logic/mod.yaml line #22
   123  		/* err('ReqlQueryLogicError', 'Expected type NUMBER but found STRING.', [1]) */
   124  		var expected_ Err = err("ReqlQueryLogicError", "Expected type NUMBER but found STRING.")
   125  		/* r.expr(4) % 'a' */
   126  
   127  		suite.T().Log("About to run line #22: r.Expr(4).Mod('a')")
   128  
   129  		runAndAssert(suite.Suite, expected_, r.Expr(4).Mod("a"), suite.session, r.RunOpts{
   130  			GeometryFormat: "raw",
   131  			GroupFormat:    "map",
   132  		})
   133  		suite.T().Log("Finished running line #22")
   134  	}
   135  
   136  	{
   137  		// math_logic/mod.yaml line #27
   138  		/* err('ReqlQueryLogicError', 'Expected type NUMBER but found STRING.', [0]) */
   139  		var expected_ Err = err("ReqlQueryLogicError", "Expected type NUMBER but found STRING.")
   140  		/* r.expr('a') % 1 */
   141  
   142  		suite.T().Log("About to run line #27: r.Expr('a').Mod(1)")
   143  
   144  		runAndAssert(suite.Suite, expected_, r.Expr("a").Mod(1), suite.session, r.RunOpts{
   145  			GeometryFormat: "raw",
   146  			GroupFormat:    "map",
   147  		})
   148  		suite.T().Log("Finished running line #27")
   149  	}
   150  
   151  	{
   152  		// math_logic/mod.yaml line #32
   153  		/* err('ReqlQueryLogicError', 'Expected type NUMBER but found STRING.', [0]) */
   154  		var expected_ Err = err("ReqlQueryLogicError", "Expected type NUMBER but found STRING.")
   155  		/* r.expr('a') % 'b' */
   156  
   157  		suite.T().Log("About to run line #32: r.Expr('a').Mod('b')")
   158  
   159  		runAndAssert(suite.Suite, expected_, r.Expr("a").Mod("b"), suite.session, r.RunOpts{
   160  			GeometryFormat: "raw",
   161  			GroupFormat:    "map",
   162  		})
   163  		suite.T().Log("Finished running line #32")
   164  	}
   165  }