1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382
|
'
' Visual Basic.Net COmpiler
' Copyright (C) 2004 - 2006 Rolf Bjarne Kvinge, rbjarnek at users.sourceforge.net
'
' This library is free software; you can redistribute it and/or
' modify it under the terms of the GNU Lesser General Public
' License as published by the Free Software Foundation; either
' version 2.1 of the License, or (at your option) any later version.
'
' This library is distributed in the hope that it will be useful,
' but WITHOUT ANY WARRANTY; without even the implied warranty of
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
' Lesser General Public License for more details.
'
' You should have received a copy of the GNU Lesser General Public
' License along with this library; if not, write to the Free Software
' Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
'
Class frmMain
Inherits Windows.Forms.Form
Private WithEvents m_Tests As Tests
Private WithEvents m_TestExecutor As New TestExecutor
Private m_TestView As New TestView(Me)
Private m_Indices() As Integer
Private m_Icons() As Icon
Private m_Colors() As Brush
Private Delegate Sub UpdateUIDelegate(ByVal test As Test, ByVal UpdateSummary As Boolean)
Private Delegate Sub UpdateUIDelegate2()
ReadOnly Property TestExecutor() As TestExecutor
Get
Return m_TestExecutor
End Get
End Property
ReadOnly Property Tests() As Tests
Get
Return m_Tests
End Get
End Property
Function GetIcon(ByVal Result As Test.Results) As Icon
Return m_Icons(Result)
End Function
Function GetIconIndex(ByVal Result As Test.Results) As Integer
Return m_Indices(Result)
End Function
Private Sub CreateImages()
Dim images() As Bitmap
Dim bounds As New Rectangle(0, 0, 16, 16)
ReDim m_Colors(System.Enum.GetValues(GetType(Test.Results)).Length - 1)
For i As Integer = 0 To m_Colors.Length - 1
m_Colors(i) = Brushes.Chocolate
Next
m_Colors(Test.Results.Failed) = Brushes.Red
m_Colors(Test.Results.Running) = Brushes.Blue
m_Colors(Test.Results.Success) = Brushes.Green
m_Colors(Test.Results.KnownFailureSucceeded) = Brushes.GreenYellow
m_Colors(Test.Results.NotRun) = Brushes.Yellow
m_Colors(Test.Results.Regressed) = Brushes.Indigo
m_Colors(Test.Results.Skipped) = Brushes.Orange
m_Colors(Test.Results.KnownFailureFailed) = Brushes.Purple
ReDim images(m_Colors.Length - 1)
ReDim m_Indices(m_Colors.Length - 1)
ReDim m_Icons(m_Colors.Length - 1)
For i As Integer = 0 To m_Colors.Length - 1
images(i) = New Bitmap(16, 16, Imaging.PixelFormat.Format32bppArgb)
Using gr As Graphics = Graphics.FromImage(images(i))
gr.FillEllipse(m_Colors(i), bounds)
End Using
m_Icons(i) = System.Drawing.Icon.FromHandle(images(i).GetHicon)
lstImages.Images.Add(images(i))
m_Indices(i) = lstImages.Images.Count - 1
Next
End Sub
Sub New()
MyBase.new()
InitializeComponent()
CreateImages()
lstTests.ListViewItemSorter = New ListViewItemComparer(lstTests)
Dim tmp As String
tmp = IO.Path.GetFullPath("..\..\vbnc\bin\vbnc.exe")
If IO.File.Exists(tmp) Then cmbCompiler.Items.Add(tmp)
tmp = IO.Path.GetFullPath("..\..\vbnc\tests")
If IO.Directory.Exists(tmp) Then cmbBasepath.Items.Add(tmp)
tmp = IO.Path.Combine(Environment.ExpandEnvironmentVariables("%windir%"), "Microsoft.Net\Framework\v2.0.50727\vbc.exe")
If IO.File.Exists(tmp) Then cmbVBCCompiler.Items.Add(tmp)
colCompiler.Width = My.Settings.TestsListView_colCompiler_Width
colDate.Width = My.Settings.TestsListView_colDate_Width
colFailedVerification.Width = My.Settings.TestsListView_colFailedVerification_Width
colName.Width = My.Settings.TestsListView_colName_Width
colResult.Width = My.Settings.TestsListView_colResult_Width
colPath.Width = My.Settings.TestsListView_colPath_Width
If My.Settings.txtVBCCompiler_Text <> "" Then
cmbCompiler.Text = My.Settings.txtVBCCompiler_Text
ElseIf cmbCompiler.Text = "" AndAlso cmbCompiler.Items.Count = 1 Then
cmbCompiler.SelectedIndex = 0
End If
If My.Settings.txtVBNCCompiler_Text <> "" Then
cmbVBCCompiler.Text = My.Settings.txtVBNCCompiler_Text
ElseIf cmbVBCCompiler.Text = "" AndAlso cmbVBCCompiler.Items.Count = 1 Then
cmbVBCCompiler.SelectedIndex = 0
End If
If My.Settings.txtBasePath_Text <> "" Then
cmbBasepath.Text = My.Settings.txtBasePath_Text
ElseIf cmbBasepath.Text = "" AndAlso cmbBasepath.Items.Count = 1 Then
cmbBasepath.SelectedIndex = 0
End If
Me.EnhancedProgressBar1.Value(0).Color = Color.Red
Me.EnhancedProgressBar1.Value(1).Color = Color.Yellow
Me.EnhancedProgressBar1.Value(2).Color = Color.Green
LoadTests()
chkDontTestIfNothingHasChanged_CheckedChanged(Nothing, Nothing)
End Sub
Public Sub RunTests()
cmdRun_Click(Nothing, Nothing)
End Sub
Private Sub RefreshTests()
Try
Dim index As Integer = -1
If lstTests.SelectedIndices.Count > 0 Then
index = lstTests.SelectedIndices(0)
End If
If m_Tests IsNot Nothing Then
m_Tests.Dispose()
m_Tests = Nothing
End If
m_Tests = New Tests(Nothing, cmbBasepath.Text, cmbCompiler.Text, cmbVBCCompiler.Text)
For Each test As Test In m_Tests
Dim item As ListViewItem
item = lstTests.Items.Add(test.Name)
item.SubItems.Add(test.IsMultiFile.ToString)
item.Tag = test
Next
If index >= 0 Then
lstTests.SelectedIndices.Add(index)
lstTests.EnsureVisible(index)
End If
txtNumberOfTests.Text = lstTests.Items.Count.ToString
txtAverageExecutionTime.Text = "0"
txtExecutionTime.Text = "0"
txtGreenTests.Text = "0"
txtMessage.Text = ""
txtRedTests.Text = "0"
txtTestsRun.Text = "0"
txtYellowTests.Text = "0"
txtQueue.Text = "0"
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub LoadTests(Optional ByVal CheckForNewTestsOnly As Boolean = False)
Try
StopWork()
If cmbBasepath.Text = "" OrElse cmbCompiler.Text = "" OrElse cmbVBCCompiler.Text = "" Then
MsgBox("Invalid paths.")
Exit Sub
End If
If m_Tests IsNot Nothing AndAlso CheckForNewTestsOnly Then
m_Tests.Update()
Else
m_Tests = New Tests(Nothing, cmbBasepath.Text, cmbCompiler.Text, cmbVBCCompiler.Text)
'm_Tests.WriteLinuxScript()
End If
Dim selectednodetext As String = Nothing
If treeTests.SelectedNode IsNot Nothing Then selectednodetext = treeTests.SelectedNode.Text
treeTests.Nodes.Clear()
LoadTests(m_Tests, treeTests.Nodes)
treeTests.Nodes(0).Expand()
If selectednodetext IsNot Nothing Then
For Each node As TreeNode In treeTests.Nodes(0).Nodes
If node.Text = selectednodetext Then
treeTests.SelectedNode = node
Exit For
End If
Next
End If
LoadOldResults()
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Function LoadTests(ByVal tests As Tests, ByVal nodes As TreeNodeCollection) As TreeNode
Dim baseNode As TreeNode
baseNode = nodes.Add(IO.Path.GetFileName(tests.Path))
baseNode.Tag = tests
For Each subtests As Tests In tests.ContainedTests
LoadTests(subtests, baseNode.Nodes)
Next
Return baseNode
End Function
Private Sub lstTests_SelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs) Handles lstTests.SelectedIndexChanged
Try
For Each item As Test In Me.GetSelectedTests
item.LoadOldResults()
Next
If lstTests.SelectedItems.Count = 1 Then
SelectTest(Me.GetSelectedTests(0))
Else
SelectTest(Nothing)
End If
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub lstTests_DoubleClick(ByVal sender As Object, ByVal e As EventArgs) Handles lstTests.DoubleClick
Try
Me.tabMain.SelectedTab = pageTestResult
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
''' <summary>
''' Thread-safe.
''' </summary>
''' <remarks></remarks>
Private Sub DoTestOf(ByVal Test As Test)
UpdateUITestRunning(Test)
Test.DoTest()
UpdateUI(Test)
End Sub
Private Sub UpdateUI()
If Me.InvokeRequired Then
Me.BeginInvoke(New UpdateUIDelegate2(AddressOf UpdateUI))
Else
For Each t As Test In m_Tests
UpdateUI(t, False)
Next
UpdateSummary()
End If
End Sub
''' <summary>
''' Thread-safe.
''' </summary>
''' <remarks></remarks>
Private Sub UpdateSummary()
Try
If Me.InvokeRequired Then
Me.BeginInvoke(New CrossAppDomainDelegate(AddressOf UpdateSummary))
Return
End If
Dim r, y, g, total, failed As Integer
Dim runcount, notruncount As Integer
Dim alltests As Tests
alltests = Me.GetSelectedTestList
If alltests Is Nothing Then alltests = m_Tests
total = alltests.RecursiveCount
r = alltests.GetRedRecursiveCount
g = alltests.GetGreenRecursiveCount
y = total - r - g
failed = r
runcount = r + g
notruncount = y
If r > 0 Then
Me.Icon = GetIcon(Test.Results.Failed)
ElseIf g > 0 AndAlso y > 0 Then
Me.Icon = GetIcon(Test.Results.Running)
ElseIf g = total Then
Me.Icon = GetIcon(Test.Results.Success)
Else
Me.Icon = GetIcon(Test.Results.NotRun)
End If
Me.EnhancedProgressBar1.Value(0).PercentDone = r / total
Me.EnhancedProgressBar1.Value(1).PercentDone = y / total
Me.EnhancedProgressBar1.Value(2).PercentDone = g / total
Me.EnhancedProgressBar1.Invalidate()
If tabMain.SelectedTab Is pageSummary Then
Dim COUNTERFORMAT As String = "{0} ({1:0.#%})"
txtRedTests.Text = String.Format(COUNTERFORMAT, r, r / total)
txtYellowTests.Text = String.Format(COUNTERFORMAT, y, y / total)
txtGreenTests.Text = String.Format(COUNTERFORMAT, g, g / total)
txtQueue.Text = m_TestExecutor.QueueCount.ToString
txtNumberOfTests.Text = total.ToString
txtTestsRun.Text = (r + g).ToString
Text = String.Format("RT OK: {0} ({5:#0.0}%) / FAILED: {1} ({4:#0.0}%) / NOT RUN: {2}/{3} tests) / IN QUEUE: {6}", g, r, y, total, r * 100 / total, g * 100 / total, m_TestExecutor.QueueCount)
Dim exectime As TimeSpan = alltests.ExecutionTimeRecursive
txtExecutionTime.Text = String.Format("{0}", FormatTimespan(exectime))
If total > 0 Then
txtAverageExecutionTime.Text = String.Format("{0}", FormatTimespan(New TimeSpan(exectime.Ticks \ CInt(IIf(runcount = 0, 1, runcount)))))
Else
txtAverageExecutionTime.Text = "0"
End If
End If
UpdateTreeIcons()
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub UpdateTreeIcons()
If Me.InvokeRequired Then
Me.BeginInvoke(New CrossAppDomainDelegate(AddressOf UpdateTreeIcons))
Return
End If
For Each subnode As TreeNode In treeTests.Nodes
UpdateTreeIcons(subnode)
Next
End Sub
Private Sub UpdateTreeIcons(ByVal Node As TreeNode)
Dim tests As Tests = TryCast(Node.Tag, Tests)
If tests IsNot Nothing Then
Dim found As Boolean
Dim count(m_Colors.Length - 1) As Integer
Dim importance() As Test.Results = {Test.Results.Failed, Test.Results.Regressed, Test.Results.Running, Test.Results.Success, Test.Results.KnownFailureFailed, Test.Results.KnownFailureSucceeded, Test.Results.Skipped, Test.Results.NotRun}
tests.GetTestsCountRecursive(count)
If count(Test.Results.NotRun) > 0 AndAlso count(Test.Results.NotRun) < tests.RecursiveCount Then count(Test.Results.Running) += 1
found = False
For i As Integer = 0 To importance.Length - 1
If count(importance(i)) > 0 Then
Node.ImageIndex = GetIconIndex(importance(i))
found = True
Exit For
End If
Next
If Not found Then
Node.ImageIndex = GetIconIndex(Test.Results.NotRun)
End If
Node.SelectedImageIndex = Node.ImageIndex
'(not implemnted in winforms yet)'Node.StateImageIndex = Node.ImageIndex
End If
For Each subnode As TreeNode In Node.Nodes
UpdateTreeIcons(subnode)
Next
End Sub
''' <summary>
''' Thread-safe.
''' </summary>
''' <param name="test"></param>
''' <remarks></remarks>
Private Sub UpdateUI(ByVal test As Test, Optional ByVal UpdateSummary As Boolean = True)
If test Is Nothing Then UpdateUI()
If Me.InvokeRequired Then
Me.BeginInvoke(New UpdateUIDelegate(AddressOf UpdateUI), New Object() {test, UpdateSummary})
Else
If Me.Disposing OrElse Me.IsDisposed Then StopIfDebugging() : Return
Dim item As ListViewItem = TryCast(test.Tag, ListViewItem)
If item Is Nothing Then
For Each item In lstTests.Items
If item.Tag Is test Then
Exit For
Else
item = Nothing
End If
Next
End If
Dim newStateImageIndex As Integer
newStateImageIndex = GetIconIndex(test.Result)
If item.StateImageIndex <> newStateImageIndex Then
'(not implemnted in winforms yet)'item.StateImageIndex = newStateImageIndex
End If
If UpdateSummary Then Me.UpdateSummary()
If lstTests.SelectedItems.Count > 0 AndAlso lstTests.SelectedItems.Contains(item) Then
lstTests_SelectedIndexChanged(lstTests, Nothing)
End If
txtQueue.Text = m_TestExecutor.QueueCount.ToString
If lstTests.ListViewItemSorter IsNot Nothing Then lstTests.Sort()
End If
End Sub
Private Function FormatTimespan(ByVal ts As TimeSpan) As String
Return ts.Days.ToString("00") & ":" & ts.Hours.ToString("00") & ":" & ts.Minutes.ToString("00") & ":" & ts.Seconds.ToString("00") & ":" & ts.Milliseconds.ToString("000")
'Return ts.TotalMilliseconds.ToString("#,##") & " milliseconds"
'Return CInt(ts.TotalSeconds).ToString & ":" & ts.Milliseconds.ToString & " seconds"
End Function
''' <summary>
''' Thread-safe.
''' </summary>
''' <param name="test"></param>
''' <remarks></remarks>
Private Sub UpdateUITestRunning(ByVal test As Test, Optional ByVal UpdateSummary As Boolean = True)
If Me.InvokeRequired Then
Me.BeginInvoke(New UpdateUIDelegate(AddressOf UpdateUITestRunning), New Object() {test, UpdateSummary})
Else
If Me.IsDisposed Then StopIfDebugging() : Return
Dim item As ListViewItem = TryCast(test.Tag, ListViewItem)
If item IsNot Nothing Then
For Each item In lstTests.Items
If item.Tag Is test Then
Exit For
Else
item = Nothing
End If
Next
End If
Debug.Assert(item IsNot Nothing)
item.SubItems(2).Text = ""
item.SubItems(3).Text = ""
item.SubItems(4).Text = ""
item.SubItems(5).Text = ""
'(not implemnted in winforms yet)'item.StateImageIndex = m_BlueIndex
End If
End Sub
Private Sub UpdateState()
txtQueue.Text = m_TestExecutor.QueueCount.ToString
End Sub
Private Sub cmdRun_Click(ByVal sender As Object, ByVal e As EventArgs) Handles cmdRun.Click
Try
'm_Tests.RunAsync()
UpdateState()
Catch ex As Exception
MsgBox(String.Format("Error while executing tests: ") & ex.Message)
End Try
End Sub
Private Sub cmdPause_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdPause.Click
Try
Dim cmd As Button = TryCast(sender, Button)
If cmd Is Nothing Then cmd = cmdPause
If cmd.Text = "Pause" Then
m_TestExecutor.Pause()
cmd.Text = "Resume"
ElseIf cmd.Text = "Resume" Then
m_TestExecutor.Resume()
cmd.Text = "Pause"
Else
End If
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub cmdBasepath_Click(ByVal sender As Object, ByVal e As EventArgs) Handles cmdBasepath.Click
Try
dlgBasepath.SelectedPath = cmbBasepath.Text
If dlgBasepath.ShowDialog = Windows.Forms.DialogResult.OK Then
cmbBasepath.Text = dlgBasepath.SelectedPath
LoadTests()
End If
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
Private Sub mnuToolsChangeOutputToVerified_Click(ByVal sender As Object, ByVal e As EventArgs) Handles mnuToolsChangeOutputToVerified.Click
Try
Dim result As MsgBoxResult
result = MsgBox("Overwrite existing files?", MsgBoxStyle.YesNoCancel)
If result = MsgBoxResult.Yes Then
MainModule.ChangeOutputToVerified(cmbBasepath.Text, True, True)
ElseIf result = MsgBoxResult.No Then
MainModule.ChangeOutputToVerified(cmbBasepath.Text, False, True)
Else
Exit Sub
End If
MsgBox("Output xml files has sucessfully been changed to verified xml files.", MsgBoxStyle.Information)
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
Private Sub cmdCompiler_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdCompiler.Click
Try
dlgFile.FileName = cmbCompiler.Text
If dlgFile.ShowDialog = Windows.Forms.DialogResult.OK Then
cmbCompiler.Text = dlgFile.FileName
End If
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
Private Sub cmnuDebugTest_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles cmnuDebugTest.Click
Try
DebugTest(Me.GetSelectedTests)
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
Private Sub cmnuViewCode_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmnuViewCode.Click, cmnuViewCode2.Click
Try
ViewCode(Me.GetSelectedTests)
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
Private Sub cmnuRunTest_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmnuRunTest.Click
Try
AddWork(GetSelectedTests, True)
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
Private Sub AddWork(ByVal Tests As Generic.IEnumerable(Of Test), ByVal Priority As Boolean)
Try
If Me.IsDisposed Then StopIfDebugging() : Return
m_TestExecutor.RunAsync(Tests, Priority)
txtQueue.Text = m_TestExecutor.QueueCount.ToString
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub AddWork(ByVal Test As Test, ByVal Priority As Boolean)
Try
If Me.IsDisposed Then StopIfDebugging() : Return
m_TestExecutor.RunAsync(Test, Priority)
txtQueue.Text = m_TestExecutor.QueueCount.ToString
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub StopWork()
Try
m_TestExecutor.Stop()
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Function GetSelectedTests() As Generic.List(Of Test)
Dim result As New Generic.List(Of Test)
For Each item As ListViewItem In lstTests.SelectedItems
Dim test As Test = TryCast(item.Tag, Test)
If test IsNot Nothing Then result.Add(test)
Next
Return result
End Function
Private Function GetSelectedTest() As Test
If lstTests.SelectedItems.Count = 1 Then
Return DirectCast(lstTests.SelectedItems(0).Tag, Test)
Else
Return Nothing
End If
End Function
Private Sub cmnuOutputToVerified_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmnuOutputToVerified.Click
Try
Dim count As Integer
For Each test As Test In GetSelectedTests()
count += MainModule.ChangeOutputToVerified(test, True)
Next
MsgBox(String.Format("{0} output xml files has sucessfully been changed to verified xml files.", count), MsgBoxStyle.Information)
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub cmdRefresh_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
Try
LoadTests()
lstTests.Focus()
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
MyBase.Dispose(disposing)
If m_Tests IsNot Nothing Then
m_Tests.Dispose()
m_Tests = Nothing
End If
If m_TestExecutor IsNot Nothing Then
m_TestExecutor.Dispose()
m_TestExecutor = Nothing
End If
End Sub
Private Sub frmMain_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles MyBase.FormClosing
Try
StopWork()
If m_Tests IsNot Nothing Then
m_Tests.Dispose()
m_Tests = Nothing
End If
My.Settings.TestsListView_colCompiler_Width = colCompiler.Width
My.Settings.TestsListView_colDate_Width = colDate.Width
My.Settings.TestsListView_colFailedVerification_Width = colFailedVerification.Width
My.Settings.TestsListView_colName_Width = colName.Width
My.Settings.TestsListView_colResult_Width = colResult.Width
My.Settings.TestsListView_colPath_Width = colPath.Width
My.Settings.txtVBCCompiler_Text = cmbCompiler.Text
My.Settings.txtVBNCCompiler_Text = cmbVBCCompiler.Text
My.Settings.txtBasePath_Text = cmbBasepath.Text
My.Settings.ContinuousTest = chkContinuous.Checked
My.Settings.Save()
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub cmnuViewFile_Items_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
Try
Dim item As ToolStripMenuItem
item = TryCast(sender, ToolStripMenuItem)
If item IsNot Nothing Then
'Process.Start("notepad.exe", """" & item.Text & """")
Process.Start("""" & item.Text & """")
End If
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub mnuToolsRefresh_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mnuToolsRefresh.Click
Try
cmdRefresh_Click(sender, e)
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub cmdStop_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdStop.Click
Try
m_TestExecutor.Stop()
UpdateState()
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub cmdRerunGreen_Click(ByVal sender As Object, ByVal e As System.EventArgs)
Try
For Each t As Test In m_Tests.GetGreenTests
AddWork(t, False)
Next
UpdateState()
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub cmdRerunRed_Click(ByVal sender As Object, ByVal e As System.EventArgs)
Try
For Each t As Test In m_Tests.GetRedTests
AddWork(t, False)
Next
UpdateState()
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub cmdRerunYellow_Click(ByVal sender As Object, ByVal e As System.EventArgs)
Try
For Each t As Test In m_Tests.GetNotRunTests
AddWork(t, False)
Next
UpdateState()
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub cmnuViewCodeAndDebugTest_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmnuViewCodeAndDebugTest.Click
Try
cmnuViewCode2.PerformClick()
cmnuDebugTest.PerformClick()
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub ViewCode(ByVal Tests As Generic.List(Of Test))
For Each test As Test In Tests
MainModule.ViewFiles(test.Files.ToArray)
Next
End Sub
Private Sub DebugTest(ByVal Tests As Generic.List(Of Test))
If Tests.Count <> 1 Then
MsgBox("Select only one test, please.", MsgBoxStyle.Information Or MsgBoxStyle.OkOnly)
Return
End If
Dim test As Test = Tests(0)
Dim strTestFile As String
strTestFile = "/Debug" & vbNewLine
For Each str As String In test.GetTestCommandLineArguments
strTestFile &= """" & str & """" & vbNewLine
Next
IO.File.WriteAllText(IO.Path.Combine(IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location), "..\..\vbnc\bin\debug.rsp"), strTestFile)
End Sub
Private Sub cmdCopySummaryToClipboard_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdCopySummaryToClipboard.Click
Try
Dim str As New System.Text.StringBuilder
Dim t, r, g As Integer
t = Tests.RecursiveCount
r = Tests.GetRedRecursiveCount
g = Tests.GetGreenRecursiveCount
str.AppendLine("# of Tests: " & t.ToString)
str.AppendLine("# of Tests (Successful): " & g.ToString & " = " & (g / t).ToString("0.0%"))
str.AppendLine("# of Tests (Failed): " & r.ToString & " = " & (r / t).ToString("0.0%"))
str.AppendLine("# of Tests (NotRun): " & (t - r - g).ToString & " = " & ((t - r - g) / t).ToString("0.0%"))
Clipboard.SetText(str.ToString)
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub cmdVBCCompiler_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdVBCCompiler.Click
Try
dlgFile.FileName = cmbVBCCompiler.Text
Dim tmpFilter As String = dlgFile.Filter
dlgFile.Filter = "vbc.exe|vbc.exe|All files (*.*)|*.*"
If dlgFile.ShowDialog = Windows.Forms.DialogResult.OK Then
cmbVBCCompiler.Text = dlgFile.FileName
End If
dlgFile.Filter = tmpFilter
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
Private Sub cmdReload_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdReload.Click
Try
LoadTests()
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub CreateNewTestToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CreateNewTestToolStripMenuItem.Click
Try
Dim tests As Tests = Me.GetSelectedTestList
Using frmEditor As New frmTestEditor
frmEditor.txtFolder.Text = tests.Path
If frmEditor.ShowDialog(Me) = Windows.Forms.DialogResult.OK Then
LoadTests(True)
End If
End Using
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub CreateNewTestCopyingThisTestToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CreateNewTestCopyingThisTestToolStripMenuItem.Click
Try
Dim t As Test = Me.GetSelectedTest()
If t Is Nothing Then
MsgBox("No selected test!")
ElseIf t.IsMultiFile Then
MsgBox("This is a multifile test!")
Else
Using frmEditor As New frmTestEditor
frmEditor.txtFolder.Text = t.BasePath
Dim newName As String
Dim base As String = IO.Path.Combine(t.BasePath, IO.Path.GetFileNameWithoutExtension(t.Files(0)))
Dim i As Integer = 1
Do While IsNumeric(base.Chars(base.Length - 1))
base = base.Substring(0, base.Length - 1)
Loop
newName = base & i.ToString & ".vb"
Do While IO.File.Exists(newName)
i += 1
newName = base & i.ToString & ".vb"
Loop
frmEditor.txtCode.Text = IO.File.ReadAllText(t.Files(0))
frmEditor.txtFile.Text = IO.Path.GetFileName(newName)
If frmEditor.ShowDialog(Me) = Windows.Forms.DialogResult.OK Then
LoadTests(True)
End If
End Using
End If
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub EditThisTestToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles EditThisTestToolStripMenuItem.Click
Try
Dim t As Test = Me.GetSelectedTest()
If t Is Nothing Then
MsgBox("No selected test!")
ElseIf t.IsMultiFile Then
MsgBox("This is a multifile test!")
Else
Using frmEditor As New frmTestEditor
frmEditor.txtFolder.Text = cmbBasepath.Text
frmEditor.txtFile.Text = IO.Path.GetFileName(t.Files(0))
frmEditor.txtCode.Text = IO.File.ReadAllText(t.Files(0))
If frmEditor.ShowDialog(Me) = Windows.Forms.DialogResult.OK Then
LoadTests()
End If
End Using
End If
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub chkHosted_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles chkHosted.CheckedChanged
Try
If m_Tests IsNot Nothing Then
m_TestExecutor.RunTestsHosted = chkHosted.Checked
End If
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub BothAssembliesToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BothAssembliesToolStripMenuItem.Click
Try
Dim vbc, vbnc As String
Dim test As Test = GetSelectedTest()
If test Is Nothing Then
MsgBox("Select a test")
Return
End If
vbc = test.GetOutputVBCAssembly
vbnc = test.GetOutputAssembly
Process.Start(GetReflectorPath, """" & vbc & """ """ & vbnc & """")
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Function GetReflectorPath() As String
Dim path As String
path = GetSetting(Application.ProductName, Me.Name, "Reflector", Environment.ExpandEnvironmentVariables("%PROGRAMFILES%\Reflector\Reflector.exe"))
If IO.File.Exists(path) = False Then
path = InputBox("Path of reflector: ")
End If
If path <> "" Then
SaveSetting(Application.ProductName, Me.Name, "Reflector", path)
End If
Return path
End Function
Private Sub VBNCAssemblyToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles VBNCAssemblyToolStripMenuItem.Click
Try
Dim vbnc As String
Dim test As Test = GetSelectedTest()
If test Is Nothing Then
MsgBox("Select a test")
Return
End If
vbnc = test.GetOutputAssembly
Process.Start(GetReflectorPath, """" & vbnc & """")
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub VBCAssemblyToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles VBCAssemblyToolStripMenuItem.Click
Try
Dim vbc As String
Dim test As Test = GetSelectedTest()
If test Is Nothing Then
MsgBox("Select a test")
Return
End If
vbc = test.GetOutputVBCAssembly
Process.Start(GetReflectorPath, """" & vbc & """")
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub tmrContinuous_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles tmrContinuous.Tick
Try
If chkContinuous.Checked Then
If m_TestExecutor IsNot Nothing AndAlso m_TestExecutor.QueueCount = 0 AndAlso m_Tests IsNot Nothing Then
m_TestExecutor.RunAsyncTree(m_Tests)
End If
End If
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub NewTestToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles NewTestToolStripMenuItem.Click
Try
Dim test As Test = Me.GetSelectedTest
Dim list As Tests = Me.GetSelectedTestList
Using frmNew As New frmNewTest
Dim result As DialogResult
If test IsNot Nothing Then
result = frmNew.ShowDialog(Me, list.Path, test.Name)
Else
result = frmNew.ShowDialog(Me, test.BasePath, "")
End If
If result = Windows.Forms.DialogResult.OK Then
LoadTests(True)
End If
End Using
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub CreateNewTestUsingThisTestAsBaseNameToolStripMenuItem_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles CreateNewTestUsingThisTestAsBaseNameToolStripMenuItem.Click
NewTestToolStripMenuItem_Click(Nothing, Nothing)
End Sub
Private Sub treeTests_AfterSelect(ByVal sender As System.Object, ByVal e As System.Windows.Forms.TreeViewEventArgs) Handles treeTests.AfterSelect
Try
Dim tests As Tests = GetSelectedTestList()
If tests IsNot Nothing Then
SelectTestList(tests.GetAllTestsInTree)
End If
UpdateSummary()
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub treeTests_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles treeTests.DoubleClick
Try
Me.tabMain.SelectedTab = pageTests
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub SelectTestList(ByVal Tests As Generic.IEnumerable(Of Test))
lstTests.BeginUpdate()
lstTests.Items.Clear()
Dim items As New Generic.List(Of ListViewItem)
For Each test As Test In Tests
Dim item As ListViewItem
item = m_TestView.GetListViewItem(test)
items.Add(item)
Next
lstTests.Items.AddRange(items.ToArray)
lstTests.EndUpdate()
End Sub
Private Sub SelectTest(ByVal Test As Test)
While Me.tabMain.TabPages.Count > 4
Me.tabMain.TabPages.Remove(Me.tabMain.TabPages(4))
End While
If Test Is Nothing Then
txtTestResult.Text = ""
txtMessage.Text = ""
Else
Test.Initialize()
If Test.Run Then
If Test.Success Then
txtTestResult.Text = "Success"
Else
txtTestResult.Text = "Failed"
End If
Else
txtTestResult.Text = "NotRun"
End If
txtMessage.Text = Test.FailedVerificationMessage
tabMain.Visible = False
For Each file As String In Test.Files
tabMain.TabPages.Add(New FileTabPage(file))
Next
If Test.ResponseFile <> "" Then tabMain.TabPages.Add(New FileTabPage(Test.ResponseFile))
If Test.RspFile <> "" Then tabMain.TabPages.Add(New FileTabPage(Test.RspFile))
tabMain.Visible = True
pageOldResults.Tag = Test
End If
gridTestProperties.SelectedObject = Test
End Sub
Private Function GetSelectedTestList() As Tests
Dim result As Tests = Nothing
If Me.treeTests.SelectedNode IsNot Nothing Then
result = TryCast(Me.treeTests.SelectedNode.Tag, Tests)
End If
Return result
End Function
Private Sub ViewQueuedTestsToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ViewQueuedTestsToolStripMenuItem.Click
Try
Me.SelectTestList(m_TestExecutor.Queue)
Me.tabMain.SelectedTab = pageTests
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub AllTestsToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AllTestsToolStripMenuItem.Click
Try
Dim tests As Tests = Me.GetSelectedTestList
If tests IsNot Nothing Then
Me.m_TestExecutor.RunAsync(tests)
End If
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub FailedTestsToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles FailedTestsToolStripMenuItem.Click
Try
Dim tests As Tests = Me.GetSelectedTestList
If tests IsNot Nothing Then
Me.m_TestExecutor.RunAsync(tests.GetRedTests)
End If
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub SucceededTestsToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SucceededTestsToolStripMenuItem.Click
Try
Dim tests As Tests = Me.GetSelectedTestList
If tests IsNot Nothing Then
Me.m_TestExecutor.RunAsync(tests.GetGreenTests)
End If
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub NotRunTestsToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles NotRunTestsToolStripMenuItem.Click
Try
Dim tests As Tests = Me.GetSelectedTestList
If tests IsNot Nothing Then
Me.m_TestExecutor.RunAsync(tests.GetNotRunTests)
End If
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub RunTestsToolStripMenuItem1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RunTestsToolStripMenuItem1.Click
Try
Dim tests As Tests = Me.GetSelectedTestList
If tests IsNot Nothing Then
Me.m_TestExecutor.RunAsync(tests.GetRunTests)
End If
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub m_TestExecutor_AfterExecute(ByVal Test As Test) Handles m_TestExecutor.AfterExecute
Try
If Me.InvokeRequired Then
Me.BeginInvoke(New TestExecutor.AfterExecuteDelegate(AddressOf m_TestExecutor_AfterExecute), Test)
Return
End If
UpdateSummary()
If Me.GetSelectedTest Is Test Then
lstTests_SelectedIndexChanged(lstTests, Nothing)
End If
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub CreateNewTestInThisFolderToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CreateNewTestInThisFolderToolStripMenuItem.Click
NewTestToolStripMenuItem_Click(Nothing, Nothing)
End Sub
Private Sub chkDontTestIfNothingHasChanged_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles chkDontTestIfNothingHasChanged.CheckedChanged
Try
If m_Tests IsNot Nothing Then m_Tests.SkipCleanTests = chkDontTestIfNothingHasChanged.Checked
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub OnlyRefreshToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OnlyRefreshToolStripMenuItem.Click
Try
Dim tests As Tests
tests = Me.GetSelectedTestList()
If tests IsNot Nothing Then
tests.Update()
End If
treeTests_AfterSelect(treeTests, New TreeViewEventArgs(treeTests.SelectedNode))
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub lstOldResults_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles lstOldResults.SelectedIndexChanged
Try
If lstOldResults.SelectedItems.Count = 1 Then
Dim result As OldResult = TryCast(lstOldResults.SelectedItems(0).Tag, OldResult)
txtOldResult.Text = result.Text
End If
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace)
End Try
End Sub
Private Sub LoadOldResults()
'Static thread As Threading.Thread
'Static sync As New Object
Return
'SyncLock sync
' If thread Is Nothing Then
' thread = New Threading.Thread(New Threading.ThreadStart(AddressOf LoadOldResults))
' thread.Start()
' Exit Sub
' End If
'End SyncLock
'Try
' Dim tests As Tests = m_Tests
' Dim stack As New Generic.Queue(Of Tests)
' stack.Enqueue(tests)
' Do Until stack.Count = 0
' tests = stack.Dequeue
' For Each subtests As Tests In tests.ContainedTests
' stack.Enqueue(subtests)
' Next
' For Each test As Test In tests
' If Me.IsDisposed Then Exit Do
' Try
' Me.Invoke(New CrossAppDomainDelegate(AddressOf test.LoadOldResults))
' Catch ex As Exception
' Continue For
' End Try
' Threading.Thread.Sleep(0)
' Next
' Loop
' thread = Nothing
'Catch ex As Exception
' MsgBox(ex.Message & vbNewLine & ex.StackTrace, MsgBoxStyle.Exclamation)
'End Try
End Sub
Private Sub cmdSelfTest_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdSelfTest.Click
Try
Static selfTests As Generic.List(Of Test)
If selfTests Is Nothing Then
selfTests = New Generic.List(Of Test)
For Each ts As Tests In m_Tests.ContainedTests
If ts.Path.Contains("SelfTest") Then
selfTests.AddRange(ts)
End If
Next
End If
Me.ViewCode(selfTests)
Me.DebugTest(selfTests)
AddWork(selfTests, True)
Catch ex As System.Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace, MsgBoxStyle.Exclamation)
End Try
End Sub
Private Sub worker_DoWork(ByVal sender As Object, ByVal e As System.ComponentModel.DoWorkEventArgs) Handles worker.DoWork
Try
Catch ex As System.Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace, MsgBoxStyle.Exclamation)
End Try
End Sub
Private Sub tabMain_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles tabMain.SelectedIndexChanged
Try
If tabMain.SelectedTab Is pageSummary Then
UpdateSummary()
ElseIf tabMain.SelectedTab Is pageOldResults Then
LoadOldTests()
End If
Catch ex As System.Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace, MsgBoxStyle.Exclamation)
End Try
End Sub
Private Sub LoadOldTests()
Dim oldResults As Generic.List(Of OldResult)
Dim oldResultsItem As New Generic.List(Of ListViewItem)
Dim Test As Test
lstOldResults.Items.Clear()
lstOldResults.Columns(1).Width = 600
Test = TryCast(pageOldResults.Tag, Test)
If Test Is Nothing Then Return
oldResults = Test.GetOldResults
For Each result As OldResult In oldResults
Dim newItem As New ListViewItem(result.Result.ToString)
newItem.SubItems.Add(result.Compiler)
newItem.Tag = result
newItem.ImageIndex = GetIconIndex(result.Result)
oldResultsItem.Add(newItem)
Next
oldResultsItem.Reverse()
lstOldResults.Items.AddRange(oldResultsItem.ToArray)
txtOldResult.Text = ""
End Sub
Private Sub frmMain_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Try
chkContinuous.Checked = My.Settings.ContinuousTest
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace, MsgBoxStyle.Exclamation)
End Try
End Sub
Private Sub MakeErrorTestToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MakeErrorTestToolStripMenuItem.Click
Try
Dim tests As Generic.List(Of Test), test As Test
tests = GetSelectedTests()
If tests.Count <> 1 Then
Throw New ApplicationException("Select one and only one test.")
End If
test = tests(0)
test.DoTest()
If test.Run = False Then
Throw New ApplicationException("The test has not been executed!")
ElseIf test.Result <> rt.Test.Results.Failed AndAlso test.Result <> rt.Test.Results.Regressed Then
Throw New ApplicationException("The test didn't fail!")
ElseIf test.Files.Count <> 1 Then
Throw New ApplicationException("The test has more than one file!")
End If
Dim output As String
Dim errnumber As String
Dim source As String = test.Files(0)
Dim iStart, iEnd As Integer
Dim vStart As String = ": error BC"
Dim vEnd As String = ":"
output = test.FailedVerification.DescriptiveMessage
iStart = output.IndexOf(vStart)
iEnd = output.IndexOf(vEnd, iStart + vStart.Length)
errnumber = output.Substring(iStart + vStart.Length, iEnd - iStart - vEnd.Length - vStart.Length + 1)
If output.IndexOf(vStart, iEnd) > 0 Then
Throw New ApplicationException("The test has more than one error message.")
End If
Dim errdir As String
errdir = IO.Path.Combine(IO.Path.GetDirectoryName(IO.Path.GetDirectoryName(source)), "Errors")
If IO.Directory.Exists(errdir) = False Then
Throw New ApplicationException("Couldn't find an errors directory (tried: " & errdir & ")!")
End If
Dim destination As String
Dim counter As Integer
Dim name As String
name = errnumber
destination = IO.Path.Combine(errdir, name & ".vb")
Do While IO.File.Exists(destination)
counter += 1
name = errnumber & "-" & counter
destination = IO.Path.Combine(errdir, name & ".vb")
Loop
Dim rspsource As String = Nothing, rspdestination As String = Nothing
If test.ResponseFile <> String.Empty Then
rspsource = test.ResponseFile
rspdestination = IO.Path.Combine(errdir, name & ".response")
End If
IO.File.Copy(source, destination, False)
If rspsource <> String.Empty Then
IO.File.Copy(rspsource, rspdestination, False)
End If
MsgBox("Created test " & name, MsgBoxStyle.OkOnly Or MsgBoxStyle.Information)
Catch ex As ApplicationException
MsgBox(ex.Message, MsgBoxStyle.Exclamation)
Catch ex As Exception
MsgBox(ex.Message & vbNewLine & ex.StackTrace, MsgBoxStyle.Exclamation)
End Try
End Sub
Private Sub CreateKnownFailurestxtToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CreateKnownFailurestxtToolStripMenuItem.Click
Try
Dim failures As New Generic.List(Of String)
ListKnownFailures(m_Tests, m_Tests, failures)
Dim tmp As String = IO.Path.GetTempFileName
IO.File.WriteAllLines(tmp, failures.ToArray)
Process.Start("notepad.exe", """" & tmp & """")
Catch ex As Exception
MsgBox(ex.Message, MsgBoxStyle.Exclamation)
End Try
End Sub
Private Sub ListKnownFailures(ByVal Root As Tests, ByVal Tests As Tests, ByVal failures As Generic.List(Of String))
For Each t As Test In Tests
Select Case t.Result
Case Test.Results.Failed, Test.Results.KnownFailureFailed, Test.Results.Regressed
Dim f As String
f = t.Name
If Root IsNot Tests Then
f = IO.Path.Combine(Tests.Path.Substring(Root.Path.Length), f)
If f.StartsWith(IO.Path.DirectorySeparatorChar) Then
f = f.Substring(1)
End If
End If
If t.FailedVerificationMessage <> "" Then
f = f & " '" & Split(t.FailedVerificationMessage, vbNewLine)(0)
End If
failures.Add(f)
Case Test.Results.Success, Test.Results.KnownFailureSucceeded
Case Test.Results.Running, Test.Results.Skipped, Test.Results.NotRun
End Select
Next
For Each t As Tests In Tests.ContainedTests
ListKnownFailures(Root, t, failures)
Next
End Sub
End Class
|