From 755deaf0baa57d7a433f9265f36ae3966ebdc3aa Mon Sep 17 00:00:00 2001 From: yunielrc87 Date: Mon, 18 Sep 2023 14:30:16 -0400 Subject: [PATCH] test(fixtures): remove not used fixture packages --- tests/fixtures/packages/docker/.pacman | 0 .../docker/rootcps/etc/docker/daemon.json | 5 - tests/fixtures/packages/fzf/.pacman | 0 tests/fixtures/packages/fzf/fzf.plugin.zsh | 35 --- tests/fixtures/packages/git/.pacman | 0 tests/fixtures/packages/git/git.plugin.zsh | 2 - tests/fixtures/packages/git/home/.gitconfig | 213 ------------------ tests/fixtures/packages/git/postsetup | 6 - tests/fixtures/packages/gocryptfs/.pacman | 0 .../packages/gocryptfs/gocryptfs.plugin.zsh | 4 - tests/fixtures/packages/gocryptfs/postsetup | 15 -- tests/fixtures/packages/google-chrome/.paru | 0 .../fixtures/packages/google-chrome/postsetup | 3 - tests/fixtures/packages/home-config/README.md | 11 - tests/fixtures/packages/home-config/dconf.ini | 114 ---------- .../packages/home-config/home/.gnupg/gpg.conf | 14 -- .../packages/home-config/home/.inputrc | 21 -- tests/fixtures/packages/home-config/postsetup | 11 - tests/fixtures/packages/home-config/setup | 17 -- tests/fixtures/packages/iftop/.pacman | 0 .../fixtures/packages/iftop/iftop.plugin.zsh | 1 - tests/fixtures/packages/iftop/postsetup | 6 - tests/fixtures/packages/mangohud/.pacman | 0 .../home/.config/MangoHud/MangoHud.conf | 139 ------------ .../packages/mangohud/mangohud.plugin.zsh | 1 - tests/fixtures/packages/mpv/.pacman | 0 .../packages/mpv/home/.config/mpv/input.conf | 3 - tests/fixtures/packages/starship/.pacman | 0 .../starship/home/.config/starship.toml | 22 -- .../packages/starship/starship.theme.zsh | 17 -- .../share/applications/swagger-editor.desktop | 11 - .../.local/share/icons/swagger-editor.png | Bin 10376 -> 0 bytes tests/fixtures/packages/swagger-editor/setup | 13 -- .../package/ydf-package-command.f.bats | 2 + .../package/ydf-package-service.i.bats | 3 +- 35 files changed, 4 insertions(+), 685 deletions(-) delete mode 100644 tests/fixtures/packages/docker/.pacman delete mode 100644 tests/fixtures/packages/docker/rootcps/etc/docker/daemon.json delete mode 100644 tests/fixtures/packages/fzf/.pacman delete mode 100644 tests/fixtures/packages/fzf/fzf.plugin.zsh delete mode 100644 tests/fixtures/packages/git/.pacman delete mode 100644 tests/fixtures/packages/git/git.plugin.zsh delete mode 100644 tests/fixtures/packages/git/home/.gitconfig delete mode 100644 tests/fixtures/packages/git/postsetup delete mode 100644 tests/fixtures/packages/gocryptfs/.pacman delete mode 100644 tests/fixtures/packages/gocryptfs/gocryptfs.plugin.zsh delete mode 100644 tests/fixtures/packages/gocryptfs/postsetup delete mode 100644 tests/fixtures/packages/google-chrome/.paru delete mode 100644 tests/fixtures/packages/google-chrome/postsetup delete mode 100644 tests/fixtures/packages/home-config/README.md delete mode 100644 tests/fixtures/packages/home-config/dconf.ini delete mode 100644 tests/fixtures/packages/home-config/home/.gnupg/gpg.conf delete mode 100644 tests/fixtures/packages/home-config/home/.inputrc delete mode 100644 tests/fixtures/packages/home-config/postsetup delete mode 100644 tests/fixtures/packages/home-config/setup delete mode 100644 tests/fixtures/packages/iftop/.pacman delete mode 100644 tests/fixtures/packages/iftop/iftop.plugin.zsh delete mode 100644 tests/fixtures/packages/iftop/postsetup delete mode 100644 tests/fixtures/packages/mangohud/.pacman delete mode 100644 tests/fixtures/packages/mangohud/home/.config/MangoHud/MangoHud.conf delete mode 100644 tests/fixtures/packages/mangohud/mangohud.plugin.zsh delete mode 100644 tests/fixtures/packages/mpv/.pacman delete mode 100644 tests/fixtures/packages/mpv/home/.config/mpv/input.conf delete mode 100644 tests/fixtures/packages/starship/.pacman delete mode 100644 tests/fixtures/packages/starship/home/.config/starship.toml delete mode 100644 tests/fixtures/packages/starship/starship.theme.zsh delete mode 100644 tests/fixtures/packages/swagger-editor/homecps/.local/share/applications/swagger-editor.desktop delete mode 100644 tests/fixtures/packages/swagger-editor/homecps/.local/share/icons/swagger-editor.png delete mode 100644 tests/fixtures/packages/swagger-editor/setup diff --git a/tests/fixtures/packages/docker/.pacman b/tests/fixtures/packages/docker/.pacman deleted file mode 100644 index e69de29..0000000 diff --git a/tests/fixtures/packages/docker/rootcps/etc/docker/daemon.json b/tests/fixtures/packages/docker/rootcps/etc/docker/daemon.json deleted file mode 100644 index fc204f7..0000000 --- a/tests/fixtures/packages/docker/rootcps/etc/docker/daemon.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "features": { - "buildkit": true - } -} diff --git a/tests/fixtures/packages/fzf/.pacman b/tests/fixtures/packages/fzf/.pacman deleted file mode 100644 index e69de29..0000000 diff --git a/tests/fixtures/packages/fzf/fzf.plugin.zsh b/tests/fixtures/packages/fzf/fzf.plugin.zsh deleted file mode 100644 index 06a65dc..0000000 --- a/tests/fixtures/packages/fzf/fzf.plugin.zsh +++ /dev/null @@ -1,35 +0,0 @@ -# Setup fzf -# --------- - -# Auto-completion -# --------------- -[[ $- == *i* ]] && source '/usr/share/fzf/completion.zsh' 2>/dev/null - -# Key bindings -# ------------ -source '/usr/share/fzf/key-bindings.zsh' - -# Environment -# FIND_CMD="find -not -path '*/.git/*'" -# export FZF_DEFAULT_COMMAND="command ${FIND_CMD}" -# export FZF_DEFAULT_COMMAND="command ${FD_COMMAND}" -# export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND" -# export FZF_COMPLETION_TRIGGER=',,' -# export FZF_DEFAULT_OPTS='--multi --height 50% --layout=reverse --border' - -# Use fd (https://github.com/sharkdp/fd) instead of the default find -# command for listing path candidates. -# - The first argument to the function ($1) is the base path to start traversal -# - See the source code (completion.{bash,zsh}) for the details. -# _fzf_compgen_path() { -# $FZF_DEFAULT_COMMAND . "$1" -# } - -# Use fd to generate the list for directory completion -# _fzf_compgen_dir() { -# $FZF_DEFAULT_COMMAND --type d . "$1" -# } - -# Supported commands -# usage: _fzf_setup_completion path|dir|var|alias|host COMMANDS... -# _fzf_setup_completion path bat diff --git a/tests/fixtures/packages/git/.pacman b/tests/fixtures/packages/git/.pacman deleted file mode 100644 index e69de29..0000000 diff --git a/tests/fixtures/packages/git/git.plugin.zsh b/tests/fixtures/packages/git/git.plugin.zsh deleted file mode 100644 index bd9291d..0000000 --- a/tests/fixtures/packages/git/git.plugin.zsh +++ /dev/null @@ -1,2 +0,0 @@ -# Aliases -alias g='git' diff --git a/tests/fixtures/packages/git/home/.gitconfig b/tests/fixtures/packages/git/home/.gitconfig deleted file mode 100644 index eaca636..0000000 --- a/tests/fixtures/packages/git/home/.gitconfig +++ /dev/null @@ -1,213 +0,0 @@ -[alias] - - # View abbreviated SHA, description, and commits history graph - l = log --oneline --graph - la = log --all --oneline --graph - - # View the current working tree status using the short format - s = status --short --branch - - # Commit - c = commit - - # Push - p = push - - # Commit all changes. - ca = !git add --all && git commit --all --verbose - - # Add - a = add - - # Amend the currently staged files to the latest commit - amr = commit --amend --reuse-message=HEAD - am = commit --amend - - # Show the diff between the latest commit and the current state. - d = diff - - # `git di $number` shows the diff between the state `$number` revisions ago and the current state. - di = !"d() { git diff --patch-with-stat HEAD~$1; }; git diff-index --quiet HEAD -- || d" - - # Pull in remote changes for the current repository and all its submodules. - pl = pull --recurse-submodules - - # Clone a repository including all submodules. - cl = clone --recurse-submodules - - # Add the given repository as a submodule at the given path - sua = submodule add - - # Update the registered submodules - suu = submodule update --remote - - # Unregister the given submodules - sud = submodule deinit --force - - # Switch to a branch, creating it if necessary. - go = "!f() { git checkout -b \"$1\" 2> /dev/null || git checkout \"$1\"; }; f" - - # Show verbose output about tags, branches or remotes - tags = tag -l - branches = branch --all - remotes = remote --verbose - - # List aliases. - aliases = config --get-regexp alias - - # Credit an author on the latest commit. - credit = "!f() { git commit --amend --author \"$1 <$2>\" -C HEAD; }; f" - - # Interactive rebase with the given number of latest commits. - reb = "!r() { git rebase -i HEAD~$1; }; r" - - # Remove the old tag with this name and tag the latest commit with it. - retag = "!r() { git tag -d $1 && git push origin :refs/tags/$1 && git tag $1; }; r" - - # Find branches containing commit - fb = "!f() { git branch -a --contains $1; }; f" - - # Find tags containing commit - ft = "!f() { git describe --always --contains $1; }; f" - - # Find commits by source code - fc = "!f() { git log --pretty=format:'%C(yellow)%h %Cblue%ad %Creset%s%Cgreen [%cn] %Cred%d' --decorate --date=short -S$1; }; f" - - # Find commits by commit message - fm = "!f() { git log --pretty=format:'%C(yellow)%h %Cblue%ad %Creset%s%Cgreen [%cn] %Cred%d' --decorate --date=short --grep=$1; }; f" - - # Remove branches that have already been merged with main. - # a.k.a. ‘delete merged’ - dm = "!git branch --merged | grep -v '\\*' | xargs -n 1 git branch -d" - - # List contributors with number of commits. - contributors = shortlog --summary --numbered - - # Show the user email for the current repository. - whoami = config user.email - -# [apply] - -# # Detect whitespace errors when applying a patch. -# whitespace = fix - -[branch] - - # Show most recently changed branches first. - sort = -committerdate - -# [core] - - # Use custom `.gitignore` and `.gitattributes`. - # excludesfile = ~/.gitignore - # attributesfile = ~/.gitattributes - - # Treat spaces before tabs and all kinds of trailing whitespace as an error. - # [default] trailing-space: looks for spaces at the end of a line - # [default] space-before-tab: looks for spaces before tabs at the beginning of a line - # whitespace = space-before-tab,-indent-with-non-tab,trailing-space - - # Prevent showing files whose names contain non-ASCII symbols as unversioned. - # http://michael-kuehnel.de/git/2014/11/21/git-mac-osx-and-german-umlaute.html - # precomposeunicode = false - - # Speed up commands involving untracked files such as `git status`. - # https://git-scm.com/docs/git-update-index#_untracked_cache - # untrackedCache = true - -[color] - - # Use colors in Git commands that are capable of colored output when - # outputting to the terminal. (This is the default setting in Git ≥ 1.8.4.) - ui = auto - -# [color "branch"] - -# current = yellow reverse -# local = yellow -# remote = green - -# [color "diff"] - -# meta = yellow bold -# frag = magenta bold # line info -# old = red # deletions -# new = green # additions - -# [color "status"] - -# added = yellow -# changed = green -# untracked = cyan - -# [commit] - -# # https://help.github.com/articles/signing-commits-using-gpg/ -# gpgsign = true - -# [diff] - -# # Detect copies as well as renames. -# renames = copies - -# [diff "bin"] - -# # Use `hexdump` to diff binary files. -# textconv = hexdump -v -C - -[help] - - # Automatically correct and execute mistyped commands. - autocorrect = 1 - -[merge] - - # Include summaries of merged commits in newly created merge commit messages - log = true - -[push] - - # https://git-scm.com/docs/git-config#git-config-pushdefault - default = simple - # Make `git push` push relevant annotated tags when pushing branches out. - followTags = true - -# URL shorthands - -[url "git@github.com:"] - - insteadOf = "gh:" - pushInsteadOf = "github:" - pushInsteadOf = "git://github.com/" - -[url "git://github.com/"] - - insteadOf = "github:" - -[url "git@gist.github.com:"] - - insteadOf = "gst:" - pushInsteadOf = "gist:" - pushInsteadOf = "git://gist.github.com/" - -[url "git://gist.github.com/"] - - insteadOf = "gist:" - -[init] - - defaultBranch = main - -[user] - email = yunielrc87@gmail.com - name = yuniel - username = yunielrc87 - -[gc] - autoDetach = false - writeCommitGraph = true - -[core] - quotepath = false - commitGraph = true - editor = vim diff --git a/tests/fixtures/packages/git/postsetup b/tests/fixtures/packages/git/postsetup deleted file mode 100644 index 701635a..0000000 --- a/tests/fixtures/packages/git/postsetup +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env sh - -set -eu - -# https://git-lfs.github.com -sudo pacman -Syu --noconfirm --needed git-lfs diff --git a/tests/fixtures/packages/gocryptfs/.pacman b/tests/fixtures/packages/gocryptfs/.pacman deleted file mode 100644 index e69de29..0000000 diff --git a/tests/fixtures/packages/gocryptfs/gocryptfs.plugin.zsh b/tests/fixtures/packages/gocryptfs/gocryptfs.plugin.zsh deleted file mode 100644 index 082766c..0000000 --- a/tests/fixtures/packages/gocryptfs/gocryptfs.plugin.zsh +++ /dev/null @@ -1,4 +0,0 @@ -alias gocryptfs-mount='gocryptfs ~/.crypted ~/Decrypted' -alias gocryptfs-umount='umount ~/Decrypted' -alias gc-mount='gocryptfs-mount' -alias gc-umount='gocryptfs-umount' diff --git a/tests/fixtures/packages/gocryptfs/postsetup b/tests/fixtures/packages/gocryptfs/postsetup deleted file mode 100644 index 7109a5b..0000000 --- a/tests/fixtures/packages/gocryptfs/postsetup +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env sh - -set -eu - -# Configure -[ -d ~/.crypted ] || mkdir ~/.crypted -[ -d ~/Decrypted ] || mkdir ~/Decrypted - -## add keybinding -# Idempotent -# if ! type -P gocryptfs >/dev/null; then -# bl::gnome_add_custom_keybinding 'Mount Crypted Directory' \ -# "gnome-terminal -- sh -c 'gocryptfs ~/.crypted ~/Decrypted; sleep 1'" \ -# "${GOCRYPTFS_MOUNT_KEYBIND}" -# fi diff --git a/tests/fixtures/packages/google-chrome/.paru b/tests/fixtures/packages/google-chrome/.paru deleted file mode 100644 index e69de29..0000000 diff --git a/tests/fixtures/packages/google-chrome/postsetup b/tests/fixtures/packages/google-chrome/postsetup deleted file mode 100644 index e62ee69..0000000 --- a/tests/fixtures/packages/google-chrome/postsetup +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env sh - -sudo pacman -Syu --noconfirm --needed gnome-browser-connector diff --git a/tests/fixtures/packages/home-config/README.md b/tests/fixtures/packages/home-config/README.md deleted file mode 100644 index 5d205d2..0000000 --- a/tests/fixtures/packages/home-config/README.md +++ /dev/null @@ -1,11 +0,0 @@ -# home-config - -This package contains: - -- Applications without installation script that have personalized configuration in home - -- Gnome plugins - -- Gnome Extension dependencies - -- Gnome Pre-installed Apps & Extensions dconf configuration diff --git a/tests/fixtures/packages/home-config/dconf.ini b/tests/fixtures/packages/home-config/dconf.ini deleted file mode 100644 index 3762cd4..0000000 --- a/tests/fixtures/packages/home-config/dconf.ini +++ /dev/null @@ -1,114 +0,0 @@ - -# Settings - -# Settings > Desktop Interface -# [org/gnome/desktop/interface] -# clock-show-seconds=false -# clock-show-weekday=true - -# Settings > Mouse -# [org/gnome/desktop/peripherals/mouse] -# speed=0.6 - -# Settings > keyboard -# [org/gnome/settings-daemon/peripherals/keyboard] -# numlock-state='on' - -# Settings > keyboard shortcuts -[org/gnome/settings-daemon/plugins/media-keys] -home=['e'] - -# Settings > Power -[org/gnome/settings-daemon/plugins/power] -power-button-action='suspend' -sleep-inactive-ac-type='nothing' -sleep-inactive-battery-timeout=900 -sleep-inactive-battery-type='suspend' - -# :Settings - -# Gedit -[org/gnome/gedit/preferences/editor] -display-line-numbers=true -editor-font='Fira Code 12' -scheme='solarized-dark' -use-default-font=false -wrap-last-split-mode='word' - -[org/gnome/gedit/preferences/ui] -show-tabs-mode='auto' -side-panel-visible=false - -# System Monitor -[org/gnome/gnome-system-monitor] -current-tab='resources' -show-whose-processes='all' -window-state=(1225, 645, 315, 135) -network-in-bits=true -network-total-in-bits=true - -# Nautilus - -[org/gnome/nautilus/icon-view] -default-zoom-level='medium' - -[org/gnome/nautilus/preferences] -default-folder-viewer='icon-view' -search-view='list-view' -show-create-link=true -show-image-thumbnails='always' - -[org/gnome/nautilus/window-state] -initial-size=(1090, 846) -sidebar-width=246 -start-with-sidebar=true - -# Terminal -[org/gnome/terminal/legacy] -theme-variant='system' - -[org/gnome/terminal/legacy/profiles:/:b1dcc9dd-5262-4d8d-a863-c897e6d979b9] -background-color='rgb(0,0,0)' -bold-color='rgb(227,230,230)' -bold-color-same-as-fg=false -bold-is-bright=true -default-size-columns=95 -default-size-rows=30 -font='Fira Code 12' -foreground-color='rgb(255,255,255)' -use-system-font=false -use-theme-colors=false - -# :Apps - -# Gnome Extensions - -# Extensions > Clipboard Indicator -[org/gnome/shell/extensions/clipboard-indicator] -history-size=15 -notify-on-copy=false - -# Extensions > Dash to dock -[org/gnome/shell/extensions/dash-to-dock] -background-opacity=0.7 -dash-max-icon-size=60 -dock-fixed=false -dock-position='BOTTOM' -extend-height=false -running-indicator-dominant-color=true -running-indicator-style='DOTS' -scroll-action='cycle-windows' -show-mounts=true -show-mounts-network=true -animate-show-apps=false -isolate-workspaces=true - -# Extensions > vitals -[org/gnome/shell/extensions/vitals] -alphabetize=true -hide-zeros=false -hot-sensors=['_memory_usage_', '_system_load_1m_', '__temperature_max__', '_network-tx_wlo1_tx_', '_network-rx_wlo1_rx_'] -show-battery=false -update-time=2 -fixed-widths=true -# :Gnome Extensions diff --git a/tests/fixtures/packages/home-config/home/.gnupg/gpg.conf b/tests/fixtures/packages/home-config/home/.gnupg/gpg.conf deleted file mode 100644 index 11b92f4..0000000 --- a/tests/fixtures/packages/home-config/home/.gnupg/gpg.conf +++ /dev/null @@ -1,14 +0,0 @@ -# Default key -# default-key 0FDEED4D - -# Key Server -keyserver hkp://keys.gnupg.net -keyserver-options auto-key-retrieve - -# Crypto -# cipher-algo AES256 - -# Passphrase agent -use-agent - -default-recipient yunielrc87@gmail.com diff --git a/tests/fixtures/packages/home-config/home/.inputrc b/tests/fixtures/packages/home-config/home/.inputrc deleted file mode 100644 index 625da68..0000000 --- a/tests/fixtures/packages/home-config/home/.inputrc +++ /dev/null @@ -1,21 +0,0 @@ -$include /etc/inputrc - -# "\e[3;3~": kill-word -# "\e[A": history-search-backward -# "\e[B": history-search-forward - -set bell-style none -set colored-stats on -set completion-ignore-case on -# set completion-prefix-display-length 3 -set completion-query-items 200 -# set convert-meta off -set input-meta on -set mark-symlinked-directories on -set match-hidden-files off -set output-meta on -set page-completions off -set show-all-if-ambiguous on -set show-all-if-unmodified on -set skip-completed-text on -set visible-stats on diff --git a/tests/fixtures/packages/home-config/postsetup b/tests/fixtures/packages/home-config/postsetup deleted file mode 100644 index 2cfc3a6..0000000 --- a/tests/fixtures/packages/home-config/postsetup +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env sh - -if [ -d ~/.gnupg ]; then - chmod 0700 ~/.gnupg -fi -if [ -f ~/.ssh/id_rsa ]; then - chmod 600 ~/.ssh/id_rsa -fi -if [ -f ~/.ssh/id_ed25519 ]; then - chmod 600 ~/.ssh/id_ed25519 -fi diff --git a/tests/fixtures/packages/home-config/setup b/tests/fixtures/packages/home-config/setup deleted file mode 100644 index 7d98845..0000000 --- a/tests/fixtures/packages/home-config/setup +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env sh - -set -eu - -sudo pacman -Syu --noconfirm --needed \ - ttf-fira-code \ - neofetch \ - seahorse-nautilus \ - nautilus-image-converter \ - dconf-editor \ - xclip - -# Gnome Extension dependencies -# sudo apt-get install -y gnome-shell-extensions chrome-gnome-shell - -## Sensory Perception -# sudo apt-get install -y lm-sensors diff --git a/tests/fixtures/packages/iftop/.pacman b/tests/fixtures/packages/iftop/.pacman deleted file mode 100644 index e69de29..0000000 diff --git a/tests/fixtures/packages/iftop/iftop.plugin.zsh b/tests/fixtures/packages/iftop/iftop.plugin.zsh deleted file mode 100644 index 24e3f28..0000000 --- a/tests/fixtures/packages/iftop/iftop.plugin.zsh +++ /dev/null @@ -1 +0,0 @@ -alias iftop='sudo iftop' diff --git a/tests/fixtures/packages/iftop/postsetup b/tests/fixtures/packages/iftop/postsetup deleted file mode 100644 index 283a230..0000000 --- a/tests/fixtures/packages/iftop/postsetup +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env sh -set -eu - -# Configure -# https://www.digitalocean.com/community/tutorials/how-to-edit-the-sudoers-file-on-ubuntu-and-centos -echo "${USER} ALL=NOPASSWD:$(which iftop)" | sudo tee "/etc/sudoers.d/${USER}-nopasswd-iftop" diff --git a/tests/fixtures/packages/mangohud/.pacman b/tests/fixtures/packages/mangohud/.pacman deleted file mode 100644 index e69de29..0000000 diff --git a/tests/fixtures/packages/mangohud/home/.config/MangoHud/MangoHud.conf b/tests/fixtures/packages/mangohud/home/.config/MangoHud/MangoHud.conf deleted file mode 100644 index 259561d..0000000 --- a/tests/fixtures/packages/mangohud/home/.config/MangoHud/MangoHud.conf +++ /dev/null @@ -1,139 +0,0 @@ -### MangoHud configuration file -### Uncomment any options you wish to enable. Default options are left uncommented -### Use some_parameter=0 to disable a parameter (only works with on/off parameters) -### Everything below can be used / overridden with the environment variable MANGOHUD_CONFIG instead - -################ PERFORMANCE ################# - -### Limit the application FPS -# fps_limit= - -### VSYNC [0-3] 0 = adaptive; 1 = off; 2 = mailbox; 3 = on -# vsync= - -### OpenGL VSYNC [0-N] 0 = off; >=1 = wait for N v-blanks, N > 1 acts as a fps limiter (fps = display refresh rate / N) -# gl_vsync= - -################### VISUAL ################### - -### Display the current CPU information -cpu_stats -cpu_temp -# cpu_text = "CPU" - -### Display the current GPU information -gpu_stats -# gpu_temp -# gpu_core_clock -# gpu_mem_clock -# gpu_name -# gpu_power -# gpu_text = "GPU" -# vulkan_driver - -### Display loaded MangoHud architecture -# arch - -### Display the frametime line graph -frame_timing -#histogram - -### Display the current system time -# time - -### Time formatting examples -# time_format = %H:%M -# time_format = [ %T %F ] -# time_format = %X # locally formatted time, because of limited glyph range, missing characters may show as '?' (e.g. japanese) - -### Change the hud font size (default is 24) -font_size=24 -# font_scale=1.0 -# font_size_text=24 -# font_scale_media_player = 0.55 - -### Change default font (set location to .TTF/.OTF file ) -## Set font for the whole hud -# font_file= - -## Set font only for text like media player metadata -# font_file_text= - -## Set font glyph ranges. Defaults to latin-only. Don't forget to set font_file/text_font_file to font that supports these. -## Probably don't enable all at once because of memory usage and hardware limits concerns. -## If you experience crashes or text is just squares, reduce glyph range or reduce font size. -# font_glyph_ranges=korean, chinese, chinese_simplified, japanese, cyrillic, thai, vietnamese, latin_ext_a, latin_ext_b - -### Change the hud position (default is top-left) -position=top-left - -### Display the current CPU load & frequency for each core -# core_load - -### IO read and write for the app (not system) -# io_read -# io_write - -### Display system ram / vram usage -# ram -# vram - -### Display Wine version -# wine - -### Disable / hide the hud by deafult -# no_display - -### Hud position offset -# offset_x= -# offset_y= - -### Hud dimensions -# width= -# height= - -### Hud transparency / alpha -background_alpha=0.5 -# alpha= - -### Color customization -# text_color=FFFFFF -# gpu_color=2E9762 -# cpu_color=2E97CB -# vram_color=AD64C1 -# ram_color=C26693 -# engine_color=EB5B5B -# io_color=A491D3 -# frametime_color=00FF00 -# background_color=020202 -# media_player_color=FFFFFF -# wine_color=732010 - -### Show media player metadata -# media_player -# media_player_name = spotify -# media_player_order = title,artist,album - -### Specify gpu with pci bus id for amdgpu and NVML stats. -### Set to 'domain:bus:slot.function' -# pci_dev = 0:0a:0.0 -# -################## INTERACTION ################# - -### Change toggle keybinds for the hud & logging -#toggle_hud=Shift_R+F12 -#toggle_logging=Shift_L+F2 -#reload_cfg=Shift_L+F4 -#upload_log=Shift+F3 - -################## LOG ################# - -### Set amount of time in second that the logging will run for -# log_duration -### Define name and location of the output file (Required for logging) -# output_file -### Permit uploading logs directly to Flightlessmango.com -# permit_upload=1 -### Define a '+'-separated list of percentiles shown in the benchmark results. -### Use "AVG" to get a mean average. Default percentiles are 97+AVG+1+0.1 -# benchmark_percentiles= diff --git a/tests/fixtures/packages/mangohud/mangohud.plugin.zsh b/tests/fixtures/packages/mangohud/mangohud.plugin.zsh deleted file mode 100644 index 03f76d1..0000000 --- a/tests/fixtures/packages/mangohud/mangohud.plugin.zsh +++ /dev/null @@ -1 +0,0 @@ -alias mangohud-dlsym='MANGOHUD_DLSYM=1 mangohud' diff --git a/tests/fixtures/packages/mpv/.pacman b/tests/fixtures/packages/mpv/.pacman deleted file mode 100644 index e69de29..0000000 diff --git a/tests/fixtures/packages/mpv/home/.config/mpv/input.conf b/tests/fixtures/packages/mpv/home/.config/mpv/input.conf deleted file mode 100644 index 8fa9d25..0000000 --- a/tests/fixtures/packages/mpv/home/.config/mpv/input.conf +++ /dev/null @@ -1,3 +0,0 @@ -hwdec=auto-safe -c set pause yes -run "/bin/sh" "-c" "echo \"${sub-text}\" | xclip -selection clipboard; notify-send --urgency=low -i terminal alert 'Subtitle copied'" diff --git a/tests/fixtures/packages/starship/.pacman b/tests/fixtures/packages/starship/.pacman deleted file mode 100644 index e69de29..0000000 diff --git a/tests/fixtures/packages/starship/home/.config/starship.toml b/tests/fixtures/packages/starship/home/.config/starship.toml deleted file mode 100644 index 391a496..0000000 --- a/tests/fixtures/packages/starship/home/.config/starship.toml +++ /dev/null @@ -1,22 +0,0 @@ -# Get editor completions based on the config schema -"$schema" = 'https://starship.rs/config-schema.json' - -# Inserts a blank line between shell prompts -# add_newline = true - -# [status] -# disabled = false -# symbol = "" - -# [docker_context] -# disabled = false -# # only_with_files = true - -# [directory] -# truncation_length = 8 - -# [aws] -# disabled = true - -# [nodejs] -# symbol = "⬢ " diff --git a/tests/fixtures/packages/starship/starship.theme.zsh b/tests/fixtures/packages/starship/starship.theme.zsh deleted file mode 100644 index 1a7a275..0000000 --- a/tests/fixtures/packages/starship/starship.theme.zsh +++ /dev/null @@ -1,17 +0,0 @@ -# export STATUS # for custom exit status -eval "$(starship init zsh)" -# export STARSHIP_CONFIG=~/.starship.toml - -# 'cmd_duration' module slow down bash execution time in a big way. -# -# disabling 'cmd_duration' module in .toml don't fix the problem -# because this only disable printing command execution time in console and -# doesn't reset DEBUG signal to its original value. -# -# $ trap -p DEBUG -# $ trap -- 'starship_preexec "$_"' DEBUG -# ------------------------------------------------ -# the solution: -# trap - DEBUG -# $ trap -p DEBUG -# $ # no DEBUG signal handlers now diff --git a/tests/fixtures/packages/swagger-editor/homecps/.local/share/applications/swagger-editor.desktop b/tests/fixtures/packages/swagger-editor/homecps/.local/share/applications/swagger-editor.desktop deleted file mode 100644 index 0062c6d..0000000 --- a/tests/fixtures/packages/swagger-editor/homecps/.local/share/applications/swagger-editor.desktop +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env xdg-open -[Desktop Entry] -Name=Swagger Editor -Comment=Design your OpenAPI -Categories=Development; -Keywords=api;openapi;editor;design;DEV;development;desarrollo;dapp; -Exec=/opt/google/chrome/google-chrome --app=http://127.0.0.1:${DAPP_SWAGGER_EDITOR_PORT} -Icon=swagger-editor -Terminal=false -Type=Application -StartupWMClass=127.0.0.1 diff --git a/tests/fixtures/packages/swagger-editor/homecps/.local/share/icons/swagger-editor.png b/tests/fixtures/packages/swagger-editor/homecps/.local/share/icons/swagger-editor.png deleted file mode 100644 index fb196f7a8db16cdf6801843acf684594553876cd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10376 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 sandbox (veth3a9fa13) pair interfaces: operation not supported local -r _package_dir="${TEST_FIXTURES_DIR}/packages/9hello-world@dockercomp" run ydf package install "$_package_dir" diff --git a/tests/usr/lib/ydf/components/package/ydf-package-service.i.bats b/tests/usr/lib/ydf/components/package/ydf-package-service.i.bats index fda3583..2724652 100644 --- a/tests/usr/lib/ydf/components/package/ydf-package-service.i.bats +++ b/tests/usr/lib/ydf/components/package/ydf-package-service.i.bats @@ -316,7 +316,8 @@ docker_compose" # Tests for ydf::package_service::__instruction_docker_compose() @test "ydf::package_service::__instruction_docker_compose() Should succeed" { - + skip 'it must be a manjaro rolling release problem' + # Error response from daemon: failed to create endpoint hello_world on network 9hello-worlddockercomp_default: failed to add the host (veth00e7765) <=> sandbox (veth3a9fa13) pair interfaces: operation not supported cd "${TEST_FIXTURES_DIR}/packages/9hello-world@dockercomp" run ydf::package_service::__instruction_docker_compose '9hello-world@dockercomp'