1
0

Helios-SUnit.st 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628
  1. Smalltalk createPackage: 'Helios-SUnit'!
  2. HLToolListWidget subclass: #HLMultiSelectToolListWidget
  3. instanceVariableNames: ''
  4. package: 'Helios-SUnit'!
  5. !HLMultiSelectToolListWidget commentStamp!
  6. This is a list that handles multiple selection!
  7. !HLMultiSelectToolListWidget methodsFor: 'accessing'!
  8. activeItemCssClass
  9. ^'selector'
  10. !
  11. listCssClass
  12. ^'nav nav-multiselect nav-pills nav-stacked'
  13. !
  14. listCssClassForItem: anObject
  15. |class |
  16. class := self selectedItem = anObject
  17. ifTrue: [ 'selector' ]
  18. ifFalse: [ '' ].
  19. (self isSelected: anObject)
  20. ifTrue: [class := class, ' active'].
  21. ^class
  22. ! !
  23. !HLMultiSelectToolListWidget methodsFor: 'actions'!
  24. select: anObject
  25. self subclassResponsibility
  26. !
  27. toggleListItem: aListItem
  28. | item |
  29. (aListItem get: 0) ifNil: [ ^ self ].
  30. "Find item"
  31. item := aListItem data: 'item'.
  32. self toggleSelection: item
  33. !
  34. toggleSelection: anObject
  35. (self isSelected: anObject)
  36. ifTrue: [ self unselect: anObject ]
  37. ifFalse: [self select: anObject ]
  38. !
  39. unselect: anObject
  40. self subclassResponsibility
  41. ! !
  42. !HLMultiSelectToolListWidget methodsFor: 'rendering'!
  43. renderItem: anObject on: html
  44. | li |
  45. li := html li.
  46. li asJQuery data: 'item' put: anObject.
  47. li
  48. class: (self listCssClassForItem: anObject);
  49. with: [
  50. html a
  51. with: [
  52. (html tag: 'i') class: (self cssClassForItem: anObject).
  53. self renderItemLabel: anObject on: html ];
  54. onClick: [
  55. self toggleListItem: li asJQuery ] ]
  56. ! !
  57. !HLMultiSelectToolListWidget methodsFor: 'testing'!
  58. isSelected: anObject
  59. self subclassResponsibility
  60. ! !
  61. HLMultiSelectToolListWidget subclass: #HLSUnitClassesListWidget
  62. instanceVariableNames: ''
  63. package: 'Helios-SUnit'!
  64. !HLSUnitClassesListWidget commentStamp!
  65. I display a list of classes (subclasses of `TestCase`).!
  66. !HLSUnitClassesListWidget methodsFor: 'accessing'!
  67. cssClassForItem: aClass
  68. ^ aClass theNonMetaClass heliosClass
  69. !
  70. items
  71. ^ items ifNil: [ self initializeItems ]
  72. !
  73. label
  74. ^ 'Classes'
  75. ! !
  76. !HLSUnitClassesListWidget methodsFor: 'actions'!
  77. observeModel
  78. self model announcer
  79. on: HLPackageSelected
  80. send: #onPackageSelected:
  81. to: self;
  82. on: HLPackageUnselected
  83. send: #onPackageUnselected:
  84. to: self;
  85. on: HLClassSelected
  86. send: #onClassSelected:
  87. to: self;
  88. on: HLClassUnselected
  89. send: #onClassUnselected:
  90. to: self
  91. !
  92. select: anObject
  93. model selectClass: anObject
  94. !
  95. unselect: anObject
  96. model unselectClass: anObject
  97. ! !
  98. !HLSUnitClassesListWidget methodsFor: 'initialization'!
  99. initializeItems
  100. ^items := model testClasses
  101. ! !
  102. !HLSUnitClassesListWidget methodsFor: 'reactions'!
  103. onClassSelected: anAnnouncement
  104. self refresh
  105. !
  106. onClassUnselected: anAnnouncement
  107. self refresh
  108. !
  109. onPackageSelected: anAnnouncement
  110. self initializeItems;
  111. refresh
  112. !
  113. onPackageUnselected: anAnnouncement
  114. self initializeItems;
  115. refresh
  116. ! !
  117. !HLSUnitClassesListWidget methodsFor: 'rendering'!
  118. renderItemLabel: aClass on: html
  119. html with: aClass name
  120. ! !
  121. !HLSUnitClassesListWidget methodsFor: 'testing'!
  122. isSelected: anObject
  123. ^model selectedClasses includes: anObject
  124. ! !
  125. HLMultiSelectToolListWidget subclass: #HLSUnitPackagesListWidget
  126. instanceVariableNames: ''
  127. package: 'Helios-SUnit'!
  128. !HLSUnitPackagesListWidget commentStamp!
  129. I display a list of packages for which unit tests are associated (packages containing subclasses of `TestCase`).!
  130. !HLSUnitPackagesListWidget methodsFor: 'accessing'!
  131. cssClassForItem: anItem
  132. ^ anItem isDirty
  133. ifTrue: [ 'package_dirty' ]
  134. ifFalse: [ 'package' ]
  135. !
  136. items
  137. ^ items ifNil: [ self initializeItems ]
  138. !
  139. label
  140. ^ 'Packages'
  141. ! !
  142. !HLSUnitPackagesListWidget methodsFor: 'actions'!
  143. observeModel
  144. self model announcer
  145. on: HLPackageSelected
  146. send: #onPackageSelected:
  147. to: self;
  148. on: HLPackageUnselected
  149. send: #onPackageUnselected:
  150. to: self
  151. !
  152. select: anObject
  153. model selectPackage: anObject
  154. !
  155. unselect: anObject
  156. model unselectPackage: anObject
  157. ! !
  158. !HLSUnitPackagesListWidget methodsFor: 'initialization'!
  159. initializeItems
  160. ^items := model testPackages
  161. sort: [:a :b | a name < b name]
  162. ! !
  163. !HLSUnitPackagesListWidget methodsFor: 'reactions'!
  164. onPackageSelected: anAnnouncement
  165. self refresh
  166. !
  167. onPackageUnselected: anAnnouncement
  168. self refresh
  169. ! !
  170. !HLSUnitPackagesListWidget methodsFor: 'rendering'!
  171. renderButtonsOn: html
  172. html button
  173. with: 'Run Tests';
  174. onClick: [ self model runTests ]
  175. !
  176. renderItemLabel: aPackage on: html
  177. html with: aPackage name
  178. ! !
  179. !HLSUnitPackagesListWidget methodsFor: 'testing'!
  180. isSelected: anObject
  181. ^model selectedPackages includes: anObject
  182. ! !
  183. HLWidget subclass: #HLSUnit
  184. instanceVariableNames: 'model packagesListWidget classesListWidget resultWidget failuresWidget errorsWidget'
  185. package: 'Helios-SUnit'!
  186. !HLSUnit commentStamp!
  187. I am the main widget for running unit tests in Helios.
  188. I provide the ability to select set of tests to run per package, and a detailed result log with passed tests, failed tests and errors.!
  189. !HLSUnit methodsFor: 'accessing'!
  190. model
  191. ^ model ifNil: [ model := HLSUnitModel new ]
  192. ! !
  193. !HLSUnit methodsFor: 'keybindings'!
  194. registerBindingsOn: aBindingGroup
  195. HLToolCommand
  196. registerConcreteClassesOn: aBindingGroup
  197. for: self model
  198. ! !
  199. !HLSUnit methodsFor: 'rendering'!
  200. renderContentOn: html
  201. html with: (HLContainer with: (
  202. HLVerticalSplitter
  203. with: (HLVerticalSplitter
  204. with: self packagesListWidget
  205. with: self classesListWidget)
  206. with: (HLHorizontalSplitter
  207. with: self resultWidget
  208. with: (HLHorizontalSplitter
  209. with: self failuresWidget
  210. with: self errorsWidget)))).
  211. self packagesListWidget focus
  212. ! !
  213. !HLSUnit methodsFor: 'widgets'!
  214. classesListWidget
  215. ^ classesListWidget ifNil: [
  216. classesListWidget := HLSUnitClassesListWidget on: self model.
  217. classesListWidget next: self failuresWidget ]
  218. !
  219. errorsWidget
  220. ^ errorsWidget ifNil: [errorsWidget := HLSUnitErrorsListWidget on: self model]
  221. !
  222. failuresWidget
  223. ^ failuresWidget ifNil: [
  224. failuresWidget := HLSUnitFailuresListWidget on: self model.
  225. failuresWidget next: self errorsWidget]
  226. !
  227. packagesListWidget
  228. ^ packagesListWidget ifNil: [
  229. packagesListWidget := HLSUnitPackagesListWidget on: self model.
  230. packagesListWidget next: self classesListWidget]
  231. !
  232. resultWidget
  233. ^ resultWidget ifNil: [
  234. resultWidget := HLSUnitResults new
  235. model: self model;
  236. yourself]
  237. ! !
  238. !HLSUnit class methodsFor: 'accessing'!
  239. tabClass
  240. ^ 'sunit'
  241. !
  242. tabLabel
  243. ^ 'SUnit'
  244. !
  245. tabPriority
  246. ^ 1000
  247. ! !
  248. !HLSUnit class methodsFor: 'testing'!
  249. canBeOpenAsTab
  250. ^ true
  251. ! !
  252. HLModel subclass: #HLSUnitModel
  253. instanceVariableNames: 'selectedPackages selectedClasses testResult currentSuite'
  254. package: 'Helios-SUnit'!
  255. !HLSUnitModel methodsFor: 'accessing'!
  256. currentSuite
  257. ^currentSuite
  258. !
  259. selectedClasses
  260. ^ (self privateSelectedClasses) select: [:each |
  261. self selectedPackages includes: each package]
  262. !
  263. selectedPackages
  264. ^ selectedPackages ifNil: [ selectedPackages := Set new ]
  265. !
  266. testCases
  267. | testCases |
  268. testCases := #().
  269. self selectedClasses
  270. do: [ :each | testCases addAll: each buildSuite ].
  271. ^ testCases
  272. !
  273. testClasses
  274. "Answer all concrete subclasses of TestCase in selected packages"
  275. | stream |
  276. stream := Array new writeStream.
  277. self selectedPackages do: [ :package |
  278. stream nextPutAll: (package classes select: [ :each |
  279. (each includesBehavior: TestCase) and: [
  280. each isAbstract not ] ] ) ].
  281. ^ stream contents
  282. !
  283. testPackages
  284. "Answer all packages containing concrete subclasses of TestCase"
  285. ^ self environment packages
  286. select: [ :each | each isTestPackage ]
  287. !
  288. testResult
  289. ^testResult ifNil: [testResult := TestResult new]
  290. ! !
  291. !HLSUnitModel methodsFor: 'actions'!
  292. runTests
  293. | worker |
  294. worker := TestSuiteRunner on: self testCases.
  295. testResult := worker result.
  296. self subscribeToTestSuite: worker.
  297. self announcer announce: (HLRunTests on: worker).
  298. worker run
  299. !
  300. selectAllPackages
  301. self testPackages do: [:each | self selectPackage: each]
  302. !
  303. selectClass: aClass
  304. self privateSelectedClasses add: aClass.
  305. self announcer announce: (HLClassSelected on: aClass).
  306. !
  307. selectPackage: aPackage
  308. self selectedPackages add: aPackage.
  309. self announcer announce: (HLPackageSelected on: aPackage).
  310. !
  311. subscribeToTestSuite: aTestSuiteRunner
  312. currentSuite ifNotNil: [ currentSuite announcer unsubscribe: self].
  313. currentSuite := aTestSuiteRunner.
  314. currentSuite announcer
  315. on: ResultAnnouncement
  316. send: #onResultAnnouncement:
  317. to: self
  318. !
  319. unselectClass: aClass
  320. self privateSelectedClasses remove: aClass ifAbsent: [^self].
  321. self announcer announce: (HLClassUnselected on: aClass).
  322. !
  323. unselectPackage: aPackage
  324. self selectedPackages remove: aPackage ifAbsent: [^self].
  325. self announcer announce: (HLPackageUnselected on: aPackage).
  326. ! !
  327. !HLSUnitModel methodsFor: 'private'!
  328. privateSelectedClasses
  329. ^ (selectedClasses ifNil: [ selectedClasses := Set new ])
  330. ! !
  331. !HLSUnitModel methodsFor: 'reacting'!
  332. onResultAnnouncement: announcement
  333. "Propogate announcement"
  334. self announcer announce: announcement.
  335. ! !
  336. HLToolListWidget subclass: #HLSUnitResultListWidget
  337. instanceVariableNames: ''
  338. package: 'Helios-SUnit'!
  339. !HLSUnitResultListWidget methodsFor: 'actions'!
  340. performFailure: aTestCase
  341. aTestCase runCase
  342. ! !
  343. !HLSUnitResultListWidget methodsFor: 'initialization'!
  344. observeModel
  345. self model announcer
  346. on: ResultAnnouncement
  347. send: #onResultAnnouncement:
  348. to: self
  349. ! !
  350. !HLSUnitResultListWidget methodsFor: 'reacting'!
  351. onResultAnnouncement: announcement
  352. self refresh.
  353. ! !
  354. !HLSUnitResultListWidget methodsFor: 'rendering'!
  355. renderItemLabel: anObject on: html
  356. html span
  357. with: anObject class name, ' >> ', anObject selector;
  358. onClick: [ self performFailure: anObject ]
  359. ! !
  360. HLSUnitResultListWidget subclass: #HLSUnitErrorsListWidget
  361. instanceVariableNames: ''
  362. package: 'Helios-SUnit'!
  363. !HLSUnitErrorsListWidget methodsFor: 'accessing'!
  364. items
  365. ^self model testResult errors
  366. !
  367. label
  368. ^'Errors'
  369. ! !
  370. HLSUnitResultListWidget subclass: #HLSUnitFailuresListWidget
  371. instanceVariableNames: ''
  372. package: 'Helios-SUnit'!
  373. !HLSUnitFailuresListWidget methodsFor: 'accessing'!
  374. label
  375. ^'Failures'
  376. ! !
  377. !HLSUnitFailuresListWidget methodsFor: 'as yet unclassified'!
  378. items
  379. ^self model testResult failures
  380. ! !
  381. HLWidget subclass: #HLSUnitResultStatus
  382. instanceVariableNames: 'model'
  383. package: 'Helios-SUnit'!
  384. !HLSUnitResultStatus methodsFor: 'accessing'!
  385. model
  386. ^ model ifNil: [model := TestResult new]
  387. !
  388. model: anObject
  389. model := anObject.
  390. self observeModel.
  391. !
  392. result
  393. ^ self model testResult
  394. !
  395. statusCssClass
  396. ^'sunit status ', self result status
  397. !
  398. statusInfo
  399. ^ self printTotal, self printPasses, self printErrors, self printFailures
  400. ! !
  401. !HLSUnitResultStatus methodsFor: 'initialization'!
  402. observeModel
  403. self model announcer
  404. on: ResultAnnouncement
  405. send: #onResultAnnouncement:
  406. to: self
  407. ! !
  408. !HLSUnitResultStatus methodsFor: 'printing'!
  409. printErrors
  410. ^ self result errors size asString , ' errors, '
  411. !
  412. printFailures
  413. ^ self result failures size asString, ' failures'
  414. !
  415. printPasses
  416. ^ (self result runs - self result errors size - self result failures size) asString , ' passes, '
  417. !
  418. printTotal
  419. ^ self result total asString, ' runs, '
  420. ! !
  421. !HLSUnitResultStatus methodsFor: 'reacting'!
  422. onResultAnnouncement: announcement
  423. self refresh.
  424. ! !
  425. !HLSUnitResultStatus methodsFor: 'rendering'!
  426. renderContentOn: html
  427. html div
  428. class: self statusCssClass;
  429. with: [ html span with: self statusInfo ]
  430. ! !
  431. HLWidget subclass: #HLSUnitResults
  432. instanceVariableNames: 'model progressBarWidget resultStatusWidget'
  433. package: 'Helios-SUnit'!
  434. !HLSUnitResults methodsFor: 'accessing'!
  435. model
  436. ^model
  437. !
  438. model: anObject
  439. model := anObject.
  440. self observeModel
  441. !
  442. progressBarWidget
  443. ^progressBarWidget ifNil: [progressBarWidget := HLProgressBarWidget new
  444. label: '';
  445. yourself]
  446. !
  447. resultStatusWidget
  448. ^resultStatusWidget ifNil: [resultStatusWidget := HLSUnitResultStatus new
  449. model: self model;
  450. yourself]
  451. ! !
  452. !HLSUnitResults methodsFor: 'initialization'!
  453. observeModel
  454. self model announcer
  455. on: HLRunTests
  456. send: #onRunTests:
  457. to: self;
  458. on: ResultAnnouncement
  459. send: #onResultAnnouncement:
  460. to: self
  461. ! !
  462. !HLSUnitResults methodsFor: 'reacting'!
  463. onResultAnnouncement: announcement
  464. self progressBarWidget
  465. updateProgress: self model testResult runs / self model testResult total * 100.
  466. !
  467. onRunTests: announcement
  468. self progressBarWidget updateProgress: 0;
  469. refresh.
  470. ! !
  471. !HLSUnitResults methodsFor: 'rendering'!
  472. renderContentOn: html
  473. html with: self resultStatusWidget;
  474. with: self progressBarWidget
  475. ! !