예제 #1
0
 def test_make_column_string_length(self):
     c = sql.make_column(
         table.Column(
             0, 'test',
             [u'this', u'is', u'test', u'data', u'that', u'is', u'awesome'
              ]))
     self.assertEqual(c.type.length, 7)
예제 #2
0
 def test_make_column_datetime(self):
     c = sql.make_column(
         table.Column(0, 'test', [
             u'Jan 1, 2008 at 4:40 AM', u'2010-01-27T03:45:00',
             u'3/1/08 16:14:45', ''
         ]))
     self.assertEqual(type(c.type), DateTime)
예제 #3
0
 def test_make_column_int(self):
     c = sql.make_column(
         table.Column(0, 'test', ['1', '-87', '418000000', '']))
     self.assertEqual(c.key, 'test')
     self.assertEqual(type(c.type), Integer)
예제 #4
0
 def test_make_column_name(self):
     c = sql.make_column(
         table.Column(0, 'test', ['1', '-87', '418000000', '']))
     self.assertEqual(c.key, 'test')
예제 #5
0
 def test_column_has_nulls(self):
     c = sql.make_column(table.Column(0, 'test', [u'1', u'-87', u'418000000', u'']))
     self.assertEqual(c.key, 'test')
     self.assertEqual(type(c.type), Integer)
     self.assertEqual(c.nullable, True)
예제 #6
0
 def test_make_column_string(self):
     c = sql.make_column(table.Column(0, 'test', [u'this', u'is', u'test', u'data']))
     self.assertEqual(type(c.type), String)
예제 #7
0
 def test_make_column_time(self):
     c = sql.make_column(table.Column(0, 'test', [u'4:40 AM', u'03:45:00', u'16:14:45', u'']))
     self.assertEqual(type(c.type), Time)
예제 #8
0
 def test_make_column_bool(self):
     c = sql.make_column(table.Column(0, "test", [u"True", u"True", u"False", u""]))
     self.assertEqual(type(c.type), Boolean)
예제 #9
0
 def test_make_column_null(self):
     c = sql.make_column(table.Column(0, "test", [u"", u"", u""]))
     self.assertEqual(type(c.type), String)
예제 #10
0
 def test_make_column_time(self):
     c = sql.make_column(table.Column(0, "test", [u"4:40 AM", u"03:45:00", u"16:14:45", u""]))
     self.assertEqual(type(c.type), Time)
예제 #11
0
 def test_make_column_date(self):
     c = sql.make_column(table.Column(0, "test", [u"Jan 1, 2008", u"2010-01-27", u"3/1/08", u""]))
     self.assertEqual(type(c.type), Date)
예제 #12
0
 def test_make_column_datetime(self):
     c = sql.make_column(
         table.Column(0, "test", [u"Jan 1, 2008 at 4:40 AM", u"2010-01-27T03:45:00", u"3/1/08 16:14:45", u""])
     )
     self.assertEqual(type(c.type), DateTime)
예제 #13
0
 def test_make_column_float(self):
     c = sql.make_column(table.Column(0, "test", [u"1.01", u"-87.34", u"418000000.0", u""]))
     self.assertEqual(type(c.type), Float)
예제 #14
0
 def test_make_column_int(self):
     c = sql.make_column(table.Column(0, "test", [u"1", u"-87", u"418000000", u""]))
     self.assertEqual(c.key, "test")
     self.assertEqual(type(c.type), Integer)
예제 #15
0
 def test_make_column_time(self):
     c = sql.make_column(
         table.Column(0, 'test', ['4:40 AM', '03:45:00', '16:14:45', '']))
     self.assertEqual(type(c.type), Time)
예제 #16
0
 def test_make_column_string(self):
     c = sql.make_column(
         table.Column(0, 'test', ['this', 'is', 'test', 'data']))
     self.assertEqual(type(c.type), String)
예제 #17
0
 def test_make_column_string(self):
     c = sql.make_column(table.Column(0, "test", [u"this", u"is", u"test", u"data"]))
     self.assertEqual(type(c.type), String)
예제 #18
0
 def test_make_column_date(self):
     c = sql.make_column(table.Column(0, 'test', [u'Jan 1, 2008', u'2010-01-27', u'3/1/08', u'']))
     self.assertEqual(type(c.type), Date)
예제 #19
0
 def test_make_column_string_length(self):
     c = sql.make_column(table.Column(0, "test", [u"this", u"is", u"test", u"data", u"that", u"is", u"awesome"]))
     self.assertEqual(c.type.length, 7)
예제 #20
0
 def test_make_column_null(self):
     c = sql.make_column(table.Column(0, 'test', [u'', u'', u'']))
     self.assertEqual(type(c.type), String)
예제 #21
0
 def test_column_no_nulls(self):
     c = sql.make_column(table.Column(0, "test", [u"1", u"-87", u"418000000"]))
     self.assertEqual(c.key, "test")
     self.assertEqual(type(c.type), Integer)
     self.assertEqual(c.nullable, False)
예제 #22
0
 def test_make_column_string_length(self):
     c = sql.make_column(table.Column(0, 'test', [u'this', u'is', u'test', u'data', u'that', u'is', u'awesome']))
     self.assertEqual(c.type.length, 7)
예제 #23
0
 def test_column_nullable(self):
     c = sql.make_column(table.Column(0, 'test', ['1', '-87', '418000000', '']))
     self.assertEqual(c.key, 'test')
     self.assertEqual(type(c.type), Integer)
     self.assertEqual(c.nullable, True)
예제 #24
0
 def test_column_no_nulls(self):
     c = sql.make_column(table.Column(0, 'test', [u'1', u'-87', u'418000000']))
     self.assertEqual(c.key, 'test')
     self.assertEqual(type(c.type), Integer)
     self.assertEqual(c.nullable, False)
예제 #25
0
 def test_make_column_name(self):
     c = sql.make_column(table.Column(0, 'test', [u'1', u'-87', u'418000000', u'']))
     self.assertEqual(c.key, 'test')
예제 #26
0
 def test_make_column_bool(self):
     c = sql.make_column(
         table.Column(0, 'test', ['True', 'True', 'False', '']))
     self.assertEqual(type(c.type), Boolean)
예제 #27
0
 def test_make_column_bool(self):
     c = sql.make_column(table.Column(0, 'test', [u'True', u'True', u'False', u'']))
     self.assertEqual(type(c.type), Boolean)
예제 #28
0
 def test_make_column_float(self):
     c = sql.make_column(
         table.Column(0, 'test', ['1.01', '-87.34', '418000000.0', '']))
     self.assertEqual(type(c.type), Float)
예제 #29
0
 def test_make_column_big_int(self):
     c = sql.make_column(table.Column(0, 'test', [u'1', u'-87', u'418000000', u'2147483648']))
     self.assertEqual(c.key, 'test')
     self.assertEqual(type(c.type), BigInteger)
예제 #30
0
 def test_make_column_date(self):
     c = sql.make_column(
         table.Column(0, 'test',
                      ['Jan 1, 2008', '2010-01-27', '3/1/08', '']))
     self.assertEqual(type(c.type), Date)
예제 #31
0
 def test_make_column_float(self):
     c = sql.make_column(table.Column(0, 'test', [u'1.01', u'-87.34', u'418000000.0', u'']))
     self.assertEqual(type(c.type), Float)
예제 #32
0
 def test_make_column_null(self):
     c = sql.make_column(table.Column(0, 'test', ['', '', '']))
     self.assertEqual(type(c.type), String)
예제 #33
0
 def test_make_column_datetime(self):
     c = sql.make_column(table.Column(0, 'test', [u'Jan 1, 2008 at 4:40 AM', u'2010-01-27T03:45:00', u'3/1/08 16:14:45', u'']))
     self.assertEqual(type(c.type), DateTime)
예제 #34
0
 def test_column_not_nullable(self):
     c = sql.make_column(table.Column(0, 'test', ['1', '-87', '418000000']))
     self.assertEqual(c.key, 'test')
     self.assertEqual(type(c.type), Integer)
     self.assertEqual(c.nullable, False)
예제 #35
0
 def test_make_column_name(self):
     c = sql.make_column(table.Column(0, "test", [u"1", u"-87", u"418000000", u""]))
     self.assertEqual(c.key, "test")