Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Updated method for flagging test cases that are SQLite specific. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9525e5cf45d14f2bcb1ddc5ca014a398 |
User & Date: | shaneh 2011-05-23 04:07:04.465 |
Context
2011-05-23
| ||
04:12 | Moved log handler from SQLiteConnection object to SQLiteFactory object to prevent if from being prematurely GCed. check-in: c520cba472 user: shaneh tags: trunk | |
04:07 | Updated method for flagging test cases that are SQLite specific. check-in: 9525e5cf45 user: shaneh tags: trunk | |
2011-05-20
| ||
07:38 | Fix for issue [e058ce156e]. We should block x64 installs on x86 and we should install native only if the setup package itself is native. check-in: 7a61aabf34 user: mistachkin tags: trunk | |
Changes
Changes to test/Program.cs.
1 2 3 4 5 6 7 8 9 10 11 | using System; using System.Data.SQLite; using System.Windows.Forms; namespace test { class Program { static void Main() { Application.Run(new TestCasesDialog()); | < < < < < < < < < < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | using System; using System.Data.SQLite; using System.Windows.Forms; namespace test { class Program { static void Main() { Application.Run(new TestCasesDialog()); } } } |
Changes to test/TestCases.cs.
︙ | ︙ | |||
16 17 18 19 20 21 22 | private long logevents = 0; internal TestCases() { } | | | | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | private long logevents = 0; internal TestCases() { } internal TestCases(DbProviderFactory factory, string connectionString) : base(factory, connectionString) { } /// <summary> /// Inserts binary data into the database using a named parameter /// </summary> internal void BinaryInsert() |
︙ | ︙ | |||
72 73 74 75 76 77 78 | /// <summary> /// Tests changing password on an encrypted database. /// </summary> [Test] internal void ChangePasswordTest() { | | | 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | /// <summary> /// Tests changing password on an encrypted database. /// </summary> [Test] internal void ChangePasswordTest() { if (_fact.GetType().Name.IndexOf("SQLite", StringComparison.OrdinalIgnoreCase) > -1) { // Opens an unencrypted database SQLiteConnection cnn = new SQLiteConnection(_cnnstring.ConnectionString); cnn.Open(); // Encrypts the database. The connection remains valid and usable afterwards. |
︙ | ︙ | |||
1556 1557 1558 1559 1560 1561 1562 | /// <summary> /// Checks to extended error code result support. /// </summary> [Test] internal void ExtendedResultCodesTest() { | | | | | | 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 | /// <summary> /// Checks to extended error code result support. /// </summary> [Test] internal void ExtendedResultCodesTest() { if (_fact.GetType().Name.IndexOf("SQLite", StringComparison.OrdinalIgnoreCase) > -1) { SQLiteConnection cnn = new SQLiteConnection(_cnnstring.ConnectionString); cnn.Open(); // Turn on extended result codes cnn.SetExtendedResultCodes(true); int rc = cnn.ResultCode(); int xrc = cnn.ExtendedResultCode(); cnn.Close(); } } //Logging EventHandler public void OnLogEvent(object sender, LogEventArgs logEvent) { int err_code = logEvent.ErrorCode; string err_msg = logEvent.Message; logevents++; } /// <summary> /// Tests SQLITE_CONFIG_LOG support. /// </summary> [Test] internal void SetLogCallbackTest() { if (_fact.GetType().Name.IndexOf("SQLite", StringComparison.OrdinalIgnoreCase) > -1) { SQLiteConnection cnn = new SQLiteConnection(_cnnstring.ConnectionString); cnn.Shutdown(); // we need to shutdown so that we can change config options // create and add a log event handler SQLiteLogEventHandler logHandler = new SQLiteLogEventHandler(OnLogEvent); cnn.Log += logHandler; cnn.Open(); logevents = 0; cnn.LogMessage(1, "test log event"); |
︙ | ︙ | |||
2101 2102 2103 2104 2105 2106 2107 | delegate void TestCompletedEvent(object sender, TestEventArgs args); delegate void TestStartingEvent(object sender, TestEventArgs args); internal abstract class TestCaseBase { protected DbProviderFactory _fact; | < | 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 | delegate void TestCompletedEvent(object sender, TestEventArgs args); delegate void TestStartingEvent(object sender, TestEventArgs args); internal abstract class TestCaseBase { protected DbProviderFactory _fact; protected DbConnection _cnn = null; protected DbConnectionStringBuilder _cnnstring; protected Dictionary<string, bool> _tests = new Dictionary<string,bool>(); public event TestCompletedEvent OnTestFinished; public event TestStartingEvent OnTestStarting; public event EventHandler OnAllTestsDone; |
︙ | ︙ | |||
2128 2129 2130 2131 2132 2133 2134 | foreach (KeyValuePair<TestAttribute, System.Reflection.MethodInfo> pair in items) { _tests.Add(pair.Value.Name, true); } } | | < | 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 | foreach (KeyValuePair<TestAttribute, System.Reflection.MethodInfo> pair in items) { _tests.Add(pair.Value.Name, true); } } protected TestCaseBase(DbProviderFactory factory, string connectionString) { _fact = factory; _cnn = _fact.CreateConnection(); _cnn.ConnectionString = connectionString; _cnnstring = _fact.CreateConnectionStringBuilder(); _cnnstring.ConnectionString = connectionString; _cnn.Open(); } |
︙ | ︙ |
Changes to test/TestCasesDialog.cs.
︙ | ︙ | |||
49 50 51 52 53 54 55 | _testitems.Tests[item.Text] = item.Checked; } private void runButton_Click(object sender, EventArgs e) { string factoryString = _provider.SelectedItem.ToString(); DbProviderFactory factory = DbProviderFactories.GetFactory(factoryString); | | | 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | _testitems.Tests[item.Text] = item.Checked; } private void runButton_Click(object sender, EventArgs e) { string factoryString = _provider.SelectedItem.ToString(); DbProviderFactory factory = DbProviderFactories.GetFactory(factoryString); _test = new TestCases(factory, _connectionString.Text); _test.Tests = _testitems.Tests; _test.OnTestStarting += new TestStartingEvent(_test_OnTestStarting); _test.OnTestFinished += new TestCompletedEvent(_test_OnTestFinished); _test.OnAllTestsDone += new EventHandler(_test_OnAllTestsDone); _grid.Rows.Clear(); runButton.Enabled = false; |
︙ | ︙ |