From 70aca617507d57bec549227f93f1080f65356f3b Mon Sep 17 00:00:00 2001 From: Maxim Slipenko Date: Sun, 30 Mar 2025 11:29:24 +0300 Subject: [PATCH 1/2] fix install bash complete --- install.go | 8 +++++++- internal/translations/default.pot | 6 +++--- internal/translations/po/ru/default.po | 6 +++--- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/install.go b/install.go index 14ab04f..9c7c7ac 100644 --- a/install.go +++ b/install.go @@ -124,8 +124,14 @@ func InstallCmd() *cli.Command { }, BashComplete: func(c *cli.Context) { cfg := config.New() + err := cfg.Load() + if err != nil { + slog.Error(gotext.Get("Error loading config"), "err", err) + os.Exit(1) + } + db := database.New(cfg) - err := db.Init(c.Context) + err = db.Init(c.Context) if err != nil { slog.Error(gotext.Get("Error initialization database"), "err", err) os.Exit(1) diff --git a/internal/translations/default.pot b/internal/translations/default.pot index 1397b52..e199ee8 100644 --- a/internal/translations/default.pot +++ b/internal/translations/default.pot @@ -162,15 +162,15 @@ msgstr "" msgid "Command install expected at least 1 argument, got %d" msgstr "" -#: install.go:157 +#: install.go:163 msgid "Remove an installed package" msgstr "" -#: install.go:162 +#: install.go:168 msgid "Command remove expected at least 1 argument, got %d" msgstr "" -#: install.go:177 +#: install.go:183 msgid "Error removing packages" msgstr "" diff --git a/internal/translations/po/ru/default.po b/internal/translations/po/ru/default.po index 72d59bd..bb2f1f1 100644 --- a/internal/translations/po/ru/default.po +++ b/internal/translations/po/ru/default.po @@ -170,15 +170,15 @@ msgstr "Установить новый пакет" msgid "Command install expected at least 1 argument, got %d" msgstr "Для команды install ожидался хотя бы 1 аргумент, получено %d" -#: install.go:157 +#: install.go:163 msgid "Remove an installed package" msgstr "Удалить установленный пакет" -#: install.go:162 +#: install.go:168 msgid "Command remove expected at least 1 argument, got %d" msgstr "Для команды remove ожидался хотя бы 1 аргумент, получено %d" -#: install.go:177 +#: install.go:183 msgid "Error removing packages" msgstr "Ошибка при удалении пакетов" From 469a05105ac7038f6bc099fb27f75630baa219e5 Mon Sep 17 00:00:00 2001 From: Maxim Slipenko Date: Sun, 30 Mar 2025 13:10:48 +0300 Subject: [PATCH 2/2] test: add bash completion test --- e2e-tests/bash_completion_test.go | 40 +++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 e2e-tests/bash_completion_test.go diff --git a/e2e-tests/bash_completion_test.go b/e2e-tests/bash_completion_test.go new file mode 100644 index 0000000..f4f0887 --- /dev/null +++ b/e2e-tests/bash_completion_test.go @@ -0,0 +1,40 @@ +// ALR - Any Linux Repository +// Copyright (C) 2025 Евгений Храмов +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program 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 General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +//go:build e2e + +package e2etests_test + +import ( + "testing" + + "github.com/alecthomas/assert/v2" + "github.com/efficientgo/e2e" +) + +func TestE2EBashCompletion(t *testing.T) { + dockerMultipleRun( + t, + "bash-completion", + COMMON_SYSTEMS, + func(t *testing.T, r e2e.Runnable) { + err := r.Exec(e2e.NewCommand( + "alr", "install", "--generate-bash-completion", + )) + assert.NoError(t, err) + }, + ) +}