added 'Set path for Unit Testing' to context menu

pull/5370/head
lianahus 3 years ago
parent e6b85bc5c3
commit 72e9c09b6c
  1. 33
      apps/remix-ide/src/app/tabs/test-tab.js

@ -13,7 +13,7 @@ const TestTabLogic = require('./testTab/testTab')
const profile = { const profile = {
name: 'solidityUnitTesting', name: 'solidityUnitTesting',
displayName: 'Solidity unit testing', displayName: 'Solidity unit testing',
methods: ['testFromPath', 'testFromSource'], methods: ['testFromPath', 'testFromSource', 'setTestFolderPath'],
events: [], events: [],
icon: 'assets/img/unitTesting.webp', icon: 'assets/img/unitTesting.webp',
description: 'Fast tool to generate unit tests for your contracts', description: 'Fast tool to generate unit tests for your contracts',
@ -50,6 +50,21 @@ module.exports = class TestTab extends ViewPlugin {
onActivationInternal () { onActivationInternal () {
this.testTabLogic = new TestTabLogic(this.fileManager) this.testTabLogic = new TestTabLogic(this.fileManager)
this.listenToEvents() this.listenToEvents()
this.call('filePanel', 'registerContextMenuItem', {
id: 'solidityUnitTesting',
name: 'setTestFolderPath',
label: 'Set path for Unit Testing',
type: ['folder'],
extension: [],
path: [],
pattern: []
})
}
async setTestFolderPath (event) {
if (event.path.length > 0) {
await this.setCurrentPath(event.path[0])
}
} }
onDeactivation () { onDeactivation () {
@ -76,10 +91,7 @@ module.exports = class TestTab extends ViewPlugin {
}) })
this.on('filePanel', 'setWorkspace', async () => { this.on('filePanel', 'setWorkspace', async () => {
this.testTabLogic.setCurrentPath(this.defaultPath) this.setCurrentPath(this.defaultPath)
this.inputPath.value = this.defaultPath
this.updateDirList(this.defaultPath)
await this.updateForNewCurrent()
}) })
this.fileManager.events.on('noFileSelected', () => { this.fileManager.events.on('noFileSelected', () => {
@ -384,6 +396,17 @@ module.exports = class TestTab extends ViewPlugin {
return this.testFromSource(fileContent, path) return this.testFromSource(fileContent, path)
} }
/**
* Changes the current path of Unit Testing Plugin
* @param path - the path from where UT plugin takes _test.sol files to run
*/
async setCurrentPath (path) {
this.testTabLogic.setCurrentPath(path)
this.inputPath.value = path
this.updateDirList(path)
await this.updateForNewCurrent()
}
/* /*
Test is not associated with the UI Test is not associated with the UI
*/ */

Loading…
Cancel
Save