Skip to content

Commit 4682e25

Browse files
authored
settings page improvements (#504)
* remove target path from settings ui * add missing colons * set timeout per function to 30 * fix description for source paths * remove redundant help labels & validate build dir
1 parent 77ffa63 commit 4682e25

File tree

3 files changed

+37
-31
lines changed

3 files changed

+37
-31
lines changed

clion-plugin/src/main/kotlin/org/utbot/cpp/clion/plugin/settings/UTBotConfigurable.kt

+30-25
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ import com.intellij.ui.dsl.builder.bindText
2222
import com.intellij.ui.dsl.builder.columns
2323
import com.intellij.ui.dsl.builder.panel
2424
import com.intellij.ui.layout.ComponentPredicate
25+
import com.jetbrains.cidr.cpp.cmake.workspace.CMakeWorkspace
26+
import com.jetbrains.cidr.cpp.execution.CMakeAppRunConfiguration
2527
import kotlin.reflect.KMutableProperty0
2628
import org.utbot.cpp.clion.plugin.UTBot
2729
import org.utbot.cpp.clion.plugin.listeners.UTBotSettingsChangedListener
@@ -33,9 +35,12 @@ import org.utbot.cpp.clion.plugin.utils.addValidation
3335
import org.utbot.cpp.clion.plugin.utils.commandLineEditor
3436
import org.utbot.cpp.clion.plugin.utils.isLookLikeUnixPath
3537
import org.utbot.cpp.clion.plugin.utils.isValidHostName
38+
import org.utbot.cpp.clion.plugin.utils.nioPath
3639
import org.utbot.cpp.clion.plugin.utils.projectLifetimeDisposable
40+
import org.utbot.cpp.clion.plugin.utils.stripLeadingSlashes
3741
import java.awt.Dimension
3842
import java.awt.event.ItemEvent
43+
import java.io.File
3944

4045
class UTBotConfigurable(private val myProject: Project) : BoundConfigurable(
4146
"Project Settings to Generate Tests"
@@ -108,7 +113,7 @@ class UTBotConfigurable(private val myProject: Project) : BoundConfigurable(
108113
).bindIntValue(projectIndependentSettings::port).applyToComponent {
109114
portComponent = this
110115
}
111-
}.rowComment(UTBot.message("deployment.utbot.port.description"))
116+
}
112117

113118
row(UTBot.message("settings.project.serverName")) {
114119
textField().bindText(projectIndependentSettings::serverName).applyToComponent {
@@ -118,7 +123,7 @@ class UTBotConfigurable(private val myProject: Project) : BoundConfigurable(
118123
UTBot.message("validation.invalid.host")
119124
) { it.text.isValidHostName() }
120125
)
121-
}.rowComment(UTBot.message("deployment.utbot.host.description"))
126+
}
122127

123128
row(UTBot.message("settings.project.remotePath")) {
124129
textField().bindText(settings::remotePath).columns(COLUMNS_LARGE).validateInput(
@@ -130,26 +135,25 @@ class UTBotConfigurable(private val myProject: Project) : BoundConfigurable(
130135

131136
private fun Panel.createPathsSettings() {
132137
row(UTBot.message("settings.project.buildDir")) {
133-
val validator: (JBTextField) -> Boolean = {
134-
it.text.isNotEmpty()
135-
}
136138
textField().bindText(settings::buildDirRelativePath).columns(COLUMNS_LARGE)
137-
.validateInput(ValidationCondition(UTBot.message("validation.not.empty")) { it.text.isNotEmpty() })
138-
}.rowComment(UTBot.message("paths.buildDirectory.description"))
139-
140-
row(UTBot.message("settings.project.target")) {
141-
textField().bindText(
142-
getter = {
143-
settings.uiTargetPath
144-
},
145-
setter = {}
146-
).columns(COLUMNS_LARGE).enabled(false)
147-
}.rowComment(UTBot.message("paths.target.description"))
139+
.validateInput(ValidationCondition(UTBot.message("validation.not.empty")) {
140+
it.text.stripLeadingSlashes().isNotEmpty()
141+
})
142+
.validateInput(ValidationCondition(UTBot.message("validation.different.from.cmake.build.dir")) { jTextField ->
143+
val buildDirRelative = jTextField.text.stripLeadingSlashes()
144+
val cmakeBuildDirectories: List<File>? =
145+
CMakeAppRunConfiguration.getSelectedRunConfiguration(myProject)
146+
?.cMakeTarget?.buildConfigurations?.map {
147+
it.configurationGenerationDir
148+
}
149+
cmakeBuildDirectories?.all { it.toPath() != myProject.nioPath.resolve(buildDirRelative) } ?: true
150+
})
151+
}.contextHelp(UTBot.message("paths.buildDirectory.description"))
148152

149153
row(UTBot.message("settings.project.testsDir")) {
150154
textField().bindText(settings::testDirRelativePath).columns(COLUMNS_LARGE)
151155
.validateInput(ValidationCondition(UTBot.message("validation.not.empty")) { it.text.isNotEmpty() })
152-
}.rowComment(UTBot.message("paths.testsDir.description"))
156+
}.contextHelp(UTBot.message("paths.testsDir.description"))
153157

154158
row {
155159
val pane = UTBotProjectViewPaneForSettings(myProject)
@@ -169,32 +173,34 @@ class UTBotConfigurable(private val myProject: Project) : BoundConfigurable(
169173
{ settings.cmakeOptions },
170174
{ settings.cmakeOptions = it }
171175
)
172-
}.rowComment(UTBot.message("paths.cmakeOptions.description"))
176+
}
173177
}
174178

175179
private fun Panel.createGeneratorSettings() {
176180
data class CheckBoxInfo(
177181
val boolProperty: KMutableProperty0<Boolean>,
178182
val title: String,
179-
val description: String
183+
val description: String? = null
180184
) {
181185
fun add(panel: Panel) {
182186
panel.row {
183187
checkBox(title).bindSelected(boolProperty)
184-
}.rowComment(description)
188+
}.apply {
189+
description?.let {
190+
rowComment(it)
191+
}
192+
}
185193
}
186194
}
187195

188196
val checkBoxes = listOf(
189197
CheckBoxInfo(
190198
settings::useStubs,
191199
UTBot.message("stubs.useStubs.title"),
192-
UTBot.message("stubs.useStubs.description")
193200
),
194201
CheckBoxInfo(
195202
settings::verbose,
196203
UTBot.message("testsGeneration.verboseFormatting.title"),
197-
UTBot.message("testsGeneration.verboseFormatting.description")
198204
),
199205
CheckBoxInfo(
200206
settings::useDeterministicSearcher,
@@ -204,7 +210,6 @@ class UTBotConfigurable(private val myProject: Project) : BoundConfigurable(
204210
CheckBoxInfo(
205211
settings::generateForStaticFunctions,
206212
UTBot.message("testsGeneration.generateForStaticFunctions.title"),
207-
UTBot.message("testsGeneration.generateForStaticFunctions.description")
208213
)
209214
)
210215
checkBoxes.forEach {
@@ -218,7 +223,7 @@ class UTBotConfigurable(private val myProject: Project) : BoundConfigurable(
218223
).bindIntValue(settings::timeoutPerFunction).applyToComponent {
219224
maximumSize = TEXT_FIELD_MAX_SIZE
220225
}
221-
}.rowComment(UTBot.message("advanced.timeoutPerFunction.description"))
226+
}
222227

223228
row(UTBot.message("advanced.timeoutPerTest.title")) {
224229
spinner(
@@ -227,7 +232,7 @@ class UTBotConfigurable(private val myProject: Project) : BoundConfigurable(
227232
).bindIntValue(settings::timeoutPerTest).applyToComponent {
228233
maximumSize = TEXT_FIELD_MAX_SIZE
229234
}
230-
}.rowComment(UTBot.message("advanced.timeoutPerTest.description"))
235+
}
231236
}
232237

233238
override fun isModified(): Boolean {

clion-plugin/src/main/kotlin/org/utbot/cpp/clion/plugin/settings/UTBotProjectStoredSettings.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class UTBotProjectStoredSettings(val project: Project) : PersistentStateComponen
3939
var useStubs: Boolean = true,
4040
var useDeterministicSearcher: Boolean = false,
4141
var verbose: Boolean = false,
42-
var timeoutPerFunction: Int = 0,
42+
var timeoutPerFunction: Int = 30,
4343
var timeoutPerTest: Int = 0,
4444
var isPluginEnabled: Boolean = false
4545
) {

clion-plugin/src/main/resources/messages/UTBot.properties

+6-5
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ settings.project.target.wrong.conversion=Possibly wrong target path. Could not c
1010
settings.project.testsDir=Tests directory:
1111
settings.project.testsDir.wrong=Wrong relative path to tests directory
1212
settings.project.sourcePaths.wrong.conversion=Possibly wrong source path. Could not create relative path from remote path or this path
13-
settings.project.remotePath=Path to project on remote machine
14-
settings.project.serverName=Server host name
15-
settings.project.port=Server port
16-
settings.project.cmakeOptions=Cmake options
13+
settings.project.remotePath=Path to project on remote machine:
14+
settings.project.serverName=Server host name:
15+
settings.project.port=Server port:
16+
settings.project.cmakeOptions=Cmake options:
1717
settings.enabled.title=Plugin enabled:
1818
actions.reconnect=Reconnect to Server
1919
requests.assertion.description.progress=Generating for assertion...
@@ -37,7 +37,7 @@ paths.buildDirectory.description=Relative path to build directory with compile_c
3737
paths.target.description=Path to target which is passed to UTBot. You can select targets in UTBot targets tool window
3838
paths.cmakeOptions.description=Options passed to CMake command. <a href=https://github.com/UnitTestBot/UTBotCpp/wiki/vscode-extension-settings#cmake-options>Learn more</a>
3939
paths.testsDir.description=Relative path to directory in which tests will be generated. <a href=https://github.com/UnitTestBot/UTBotCpp/wiki/vscode-extension-settings#tests-directory>Learn more</a>
40-
paths.sourceDirectories.description=Mark/unmark directory as source by double-clicking or using actions from context menu. You can also unmark or mark directories in UTBot project view pane. <a href=https://github.com/UnitTestBot/UTBotCpp/wiki/vscode-extension-settings#source-directories>Learn more</a>
40+
paths.sourceDirectories.description=Mark/unmark directory as source by using actions from context menu. You can also unmark or mark directories in UTBot project view pane. <a href=https://github.com/UnitTestBot/UTBotCpp/wiki/vscode-extension-settings#source-directories>Learn more</a>
4141
testsGeneration.verboseFormatting.description=If set to true, tests will be formatted in more detailed form. <a href=https://github.com/UnitTestBot/UTBotCpp/wiki/vscode-extension-settings#verbose-formatting>Learn more</a>
4242
testsGeneration.verboseFormatting.title=Use verbose mode
4343
testsGeneration.generateForStaticFunctions.title=Generate for static functions
@@ -103,6 +103,7 @@ show.settings.text=Go to Settings
103103
validation.not.empty=Please fill in this field
104104
validation.not.unix.path=This path must be an absolute unix path!
105105
validation.invalid.host=Invalid host name
106+
validation.different.from.cmake.build.dir=Must be different from CMake build directory
106107
toolwindow.targets.displayName=Targets
107108
toolwindow.logs.displayName=Logs
108109
actions.verbose.menu.enabled=Verbose Mode: On

0 commit comments

Comments
 (0)