@@ -55,6 +55,7 @@ def setup( request):
55
55
print 'database initialization completed successfully'
56
56
return dbConn
57
57
58
+ @pytest .mark .skipif (True , "Enable for testing: CreateService Session closes on failed create #52" )
58
59
def test_SessionNotFailed (setup ):
59
60
# goal of this is to see that if we force errors like a null value, or duplicate that the session does not fail
60
61
@@ -69,7 +70,7 @@ def test_SessionNotFailed(setup):
69
70
lastName = 'castronova' ,
70
71
middleName = 'michael' )
71
72
72
- assert 'People.PersonFirstName may not be NULL' in str (excinfo .value )
73
+ assert 'NULL' in str (excinfo .value )
73
74
74
75
# now add again
75
76
setup .odmcreate .createPerson (firstName = "tony" ,
@@ -122,7 +123,7 @@ def test_personFail(setup):
122
123
lastName = 'castronova' ,
123
124
middleName = 'michael' )
124
125
125
- assert 'People.PersonFirstName may not be NULL ' in str (excinfo .value )
126
+ assert 'null ' in str (excinfo .value ). lower ( )
126
127
127
128
def test_createVariable (setup ):
128
129
@@ -155,7 +156,7 @@ def test_createVariable(setup):
155
156
speciation = None ,
156
157
definition = None )
157
158
158
- assert 'VariableCode is not unique' in str (excinfo .value )
159
+ assert 'unique' in str (excinfo .value ). lower ( )
159
160
160
161
vars = setup .odmread .getVariables ()
161
162
@@ -307,7 +308,7 @@ def test_createModel(setup):
307
308
setup .odmcreate .createModel (code = 'model' ,
308
309
name = 'mymodel2' ,
309
310
description = 'my test model2' )
310
- assert 'ModelCode is not unique' in str (excinfo .value )
311
+ assert 'unique' in str (excinfo .value ). lower ( )
311
312
312
313
313
314
def test_createRelatedModel (setup ):
0 commit comments