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 fb196f7..0000000 Binary files a/tests/fixtures/packages/swagger-editor/homecps/.local/share/icons/swagger-editor.png and /dev/null differ diff --git a/tests/fixtures/packages/swagger-editor/setup b/tests/fixtures/packages/swagger-editor/setup deleted file mode 100644 index da1027b..0000000 --- a/tests/fixtures/packages/swagger-editor/setup +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env sh - -set -eu - -# Install -[ -n "$(sudo docker ps --all --quiet --filter name=swagger-editor)" ] && exit 0 - -sudo docker run \ - --name swagger-editor \ - --detach \ - --restart always \ - --publish "${DAPP_SWAGGER_EDITOR_PORT}:8080" \ - swaggerapi/swagger-editor diff --git a/tests/usr/lib/ydf/components/package/ydf-package-command.f.bats b/tests/usr/lib/ydf/components/package/ydf-package-command.f.bats index f85d352..4f68d2b 100644 --- a/tests/usr/lib/ydf/components/package/ydf-package-command.f.bats +++ b/tests/usr/lib/ydf/components/package/ydf-package-command.f.bats @@ -279,6 +279,8 @@ com.github.tchx84.Flatseal: postinstall succeed" # Tests for ydf package install @test "ydf package install ./9hello-world@dockercomp 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 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'