-
Notifications
You must be signed in to change notification settings - Fork 475
TVP Schema Name Fix and Request Timeout Improvements #1763
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
crs2007
wants to merge
1
commit into
tediousjs:master
Choose a base branch
from
crs2007:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1852,6 +1852,42 @@ module.exports = (sql, driver) => { | |
|
||
done() | ||
}).catch(done) | ||
}, | ||
'Fix default requestTimeout is above 15s' (done) { | ||
const req = new TestRequest() | ||
req.requestTimeout = 25000 // 25 seconds | ||
const start = Date.now() | ||
req.query("WAITFOR DELAY '00:00:20.000';").then(result => { | ||
const elapsed = Date.now() - start | ||
assert.ok(!result.error, 'Should not error for long WAITFOR DELAY with high timeout') | ||
assert(elapsed >= 20000, 'Query should take at least 20 seconds') | ||
done() | ||
}).catch(done) | ||
}, | ||
'TVP with schema-qualified name triggers bug' (done) { | ||
(async () => { | ||
let pool | ||
try { | ||
pool = await sql.connect(readConfig()) | ||
const request = pool.request() | ||
const tvp = new sql.Table('AI.UDT_StringArray') | ||
tvp.columns.add('Name', sql.NVarChar(128), { nullable: false }) | ||
tvp.rows.add('TestValue1') | ||
tvp.rows.add('TestValue2') | ||
request.input('InputList', tvp) | ||
await request.execute('AI.USP_TestProcedure') | ||
} catch (err) { | ||
if (err && /Cannot find data type UDT_StringArray/.test(err.message)) { | ||
return done() | ||
} | ||
if (err && /could not find|does not exist|invalid object/i.test(err.message)) { | ||
return done() | ||
} | ||
done(err) | ||
} finally { | ||
if (pool) await sql.close() | ||
} | ||
})() | ||
Comment on lines
+1868
to
+1890
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Perhaps a nitpick, but I don't like this mixed async/callback style. The tests are written in an outdated way, but this mixing feels (and looks) nasty. Also, isn't there already a pool ready, so there's no need to be initiating a pool here? Could we be using |
||
} | ||
} | ||
} | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think it's good for us to add 20+ seconds to our test suite to test that we can set a high timeout on the request.
I'd rather we just set a low timeout (1 second, 2 seconds?!) and keep our test suite as fast as reasonably possible.