Skip to content

Commit

Permalink
Move test cases from intellij and add to corresponding charts, and ad…
Browse files Browse the repository at this point in the history
…d a new chart for first found usages in intellij
  • Loading branch information
AleksDanil committed Dec 20, 2024
1 parent ba70917 commit fdfa927
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 3 deletions.
23 changes: 20 additions & 3 deletions dashboard/new-dashboard/resources/projects/kotlin_projects.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"intelliJTyping": [
"intellij_commit/completion/IdeMenuBar_emptyPlace_sout_typing_with_library_cache",
"intellij_commit/completion/TestModelParser_emptyPlace_if_typing_with_library_cache",
"intellij_commit/completion/AndroidModuleSystem_emptyPlace_get_typing_with_library_cache"
"intellij_commit/completion/AndroidModuleSystem_emptyPlace_get_typing_with_library_cache",
"intellij_commit/completion/ToolWindowManagerImpl_newline_RuntimeE_typing_with_library_cache"
],
"kotlinLang": [
"kotlin_lang/completion/CommonParser_after_parameter_with_library_cache",
Expand Down Expand Up @@ -70,7 +71,8 @@
"intellij_commit/highlight/KotlinHighLevelFunctionParameterInfoHandler_with_library_cache",
"intellij_commit/highlight/JdkList_with_library_cache",
"intellij_commit/highlight/ComposeCompletionContributorTest_with_library_cache",
"intellij_commit/highlight/AgpUpgradeRefactoringProcessor_with_library_cache"
"intellij_commit/highlight/AgpUpgradeRefactoringProcessor_with_library_cache",
"intellij_commit/highlight/ToolWindowManagerImpl_with_library_cache"
],
"intelliJ2": [
"intellij_commit/highlight/AndroidModelTest_with_library_cache",
Expand Down Expand Up @@ -229,7 +231,10 @@
"intellij_commit/findUsages/setUp_with_library_cache",
"intellij_commit/findUsages/SolutionModel_with_library_cache",
"intellij_commit/findUsages/SqlBlock_with_library_cache",
"intellij_commit/findUsages/UIAutomationInteractionModel_with_library_cache"
"intellij_commit/findUsages/UIAutomationInteractionModel_with_library_cache",
"intellij_commit/findUsages/runReadAction_with_library_cache",
"intellij_commit/findUsages/absolutePath_with_library_cache",
"intellij_commit/findUsages/xy_with_library_cache"
],
"kotlinLang": [
"kotlin_lang/findUsages/CommonParser_with_library_cache",
Expand Down Expand Up @@ -268,6 +273,18 @@
"kotlin_lang/findUsages/SourceSet_with_library_cache"
]
},
"findUsagesFirstUsage": {
"intelliJ": [
"intellij_commit/findUsages/loadModuleEntity_with_library_cache",
"intellij_commit/findUsages/setUp_with_library_cache",
"intellij_commit/findUsages/SolutionModel_with_library_cache",
"intellij_commit/findUsages/SqlBlock_with_library_cache",
"intellij_commit/findUsages/UIAutomationInteractionModel_with_library_cache",
"intellij_commit/findUsages/runReadAction_with_library_cache",
"intellij_commit/findUsages/absolutePath_with_library_cache",
"intellij_commit/findUsages/xy_with_library_cache"
]
},
"evaluateExpression": {
"kotlinLanguageServer": [
"kotlin_language_server/evaluate-expression/ClassPathTest_with_library_cache",
Expand Down
6 changes: 6 additions & 0 deletions dashboard/new-dashboard/src/components/kotlin/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ const MEASURES = {
optimizeImportsMeasures: [{ name: "execute_editor_optimizeimports", label: "Optimize imports" }],
insertCodeMeasures: [{ name: "execute_editor_paste", label: "Insert code" }],
findUsagesMeasures: [{ name: "findUsages#mean_value", label: "findUsages mean value" }],
findUsagesFirstUsageMeasures: [{ name: "findUsages_firstUsage#mean_value", label: "findUsages first usage mean value" }],
evaluateExpressionMeasures: [{ name: "evaluateExpression#mean_value", label: "evaluate expression mean value" }],
convertJavaToKotlinProjectsMeasures: [{ name: "convertJavaToKotlin", label: "convert java to kotlin" }],
navigationToDeclarationMeasures: [
Expand Down Expand Up @@ -237,6 +238,11 @@ export const findUsagesCharts = projectsToDefinition([
measures: MEASURES.findUsagesMeasures,
machines: [MACHINES.linux],
},
{
projects: KOTLIN_PROJECTS.linux.findUsagesFirstUsage,
measures: MEASURES.findUsagesFirstUsageMeasures,
machines: [MACHINES.linux],
},
{
projects: KOTLIN_PROJECTS.mac.findUsages,
measures: MEASURES.findUsagesMeasures,
Expand Down

0 comments on commit fdfa927

Please sign in to comment.