Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit dedbccd

Browse files
committedMay 30, 2024·
WIP: Refactor cookbook
1 parent abcb7d7 commit dedbccd

File tree

11 files changed

+676
-178
lines changed

11 files changed

+676
-178
lines changed
 

‎.github/workflows/test.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
kitchen:
14+
runs-on: ubuntu-latest
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
platform: [ "default-debian-11", "default-debian-12", "default-ubuntu-2204", "default-ubuntu-2404" ]
19+
recipe: [ "binary", "source" ]
20+
variant: [ "core" ]
21+
steps:
22+
- uses: actions/checkout@v4
23+
- name: Set up Ruby
24+
uses: ruby/setup-ruby@v1
25+
with:
26+
ruby-version: ruby # latest stable release
27+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
28+
- name: Run Test Kitchen platform ${{ matrix.platform }}
29+
run: env KITCHEN_RECIPE=${{ matrix.recipe }} KITCHEN_VARIANT=${{ matrix.variant }} bundle exec rake kitchen:${{ matrix.platform }}
30+
style:
31+
runs-on: ubuntu-latest
32+
steps:
33+
- uses: actions/checkout@v4
34+
- name: Set up Ruby
35+
uses: ruby/setup-ruby@v1
36+
with:
37+
ruby-version: ruby # latest stable release
38+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
39+
- name: Run style checks
40+
run: bundle exec rake style:ruby

‎.kitchen.yml

+47-9
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,59 @@
11
---
22
driver:
3-
name: docker
3+
name: dokken
4+
privileged: true # allows systemd services to start
5+
chef_image: cincproject/cinc
6+
chef_version: <%= ENV.fetch('CHEF_VERSION', 18) %>
47

58
provisioner:
6-
name: chef_zero
7-
product_name: chef
8-
product_version: <%= ENV["CHEF_VERSION"] || '14' %>
9+
name: dokken
10+
product_name: cinc
11+
chef_binary: /opt/cinc/bin/cinc-client
12+
deprecations_as_errors: true
13+
multiple_converge: 2
14+
15+
transport:
16+
name: dokken
17+
18+
verifier:
19+
name: inspec
920

1021
platforms:
11-
- name: <%= ENV["KITCHEN_PLATFORM"] %>
12-
driver_config:
13-
use_sudo: false
22+
# @see https://github.com/chef-cookbooks/testing_examples/blob/main/kitchen.dokken.yml
23+
# @see https://hub.docker.com/u/dokken
24+
- name: debian-11
25+
driver:
26+
image: dokken/debian-11
27+
pid_one_command: /bin/systemd
28+
intermediate_instructions:
29+
- RUN /usr/bin/apt-get update
30+
- RUN /usr/bin/apt-get upgrade -y
31+
- name: debian-12
32+
driver:
33+
image: dokken/debian-12
34+
pid_one_command: /bin/systemd
35+
intermediate_instructions:
36+
- RUN /usr/bin/apt-get update
37+
- RUN /usr/bin/apt-get upgrade -y
38+
- name: ubuntu-2204
39+
driver:
40+
image: dokken/ubuntu-22.04
41+
pid_one_command: /bin/systemd
42+
intermediate_instructions:
43+
- RUN /usr/bin/apt-get update
44+
- RUN /usr/bin/apt-get upgrade -y
45+
- name: ubuntu-2404
46+
driver:
47+
image: dokken/ubuntu-24.04
48+
pid_one_command: /bin/systemd
49+
intermediate_instructions:
50+
- RUN /usr/bin/apt-get update
51+
- RUN /usr/bin/apt-get upgrade -y
1452

1553
suites:
1654
- name: default
1755
run_list:
18-
- recipe[bitcoin::<%= ENV["KITCHEN_RECIPE"] %>]
56+
- recipe[bitcoin::<%= ENV.fetch('KITCHEN_RECIPE', 'binary') %>]
1957
attributes:
2058
bitcoin:
21-
variant: <%= ENV["KITCHEN_VARIANT"] %>
59+
variant: <%= ENV.fetch('KITCHEN_VARIANT', 'core') %>

‎.travis.yml

-34
This file was deleted.

‎Gemfile

+5-11
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,11 @@
11
source 'https://rubygems.org'
22

3-
group :development do
4-
gem 'berkshelf'
5-
gem 'chef', '~> 14'
6-
gem 'rake'
7-
end
8-
9-
group :style do
10-
gem 'cookstyle'
11-
gem 'foodcritic'
12-
end
3+
gem 'rake'
134

145
group :test do
15-
gem 'kitchen-docker'
6+
gem 'berkshelf' # needed by test-kitchen
7+
gem 'cookstyle'
8+
gem 'kitchen-dokken'
9+
gem 'kitchen-inspec'
1610
gem 'test-kitchen'
1711
end

‎Gemfile.lock

+562-65
Large diffs are not rendered by default.

‎Rakefile

+7-14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
require 'thor' # XXX: load thor explicitly to prevent "Kitchen::ClientError: Could not load the 'inspec' verifier. Error: undefined method `parse_array' for class `Thor::Arguments'"
2+
13
namespace :style do
24
desc 'Run Ruby style checks'
35
require 'cookstyle'
@@ -8,21 +10,12 @@ namespace :style do
810
task.options << '--extra-details'
911
task.options << '--display-style-guide'
1012
end
11-
12-
desc 'Run Chef style checks'
13-
require 'foodcritic'
14-
FoodCritic::Rake::LintTask.new(:chef) do |task|
15-
task.options[:fail_tags] = ['any']
16-
end
1713
end
1814

1915
desc 'Run all style checks'
20-
task 'style:all' => ['style:ruby', 'style:chef']
16+
task 'style:all' => ['style:ruby']
2117

22-
if ENV['KITCHEN_PLATFORM']
23-
require 'kitchen/rake_tasks'
24-
Kitchen::RakeTasks.new
25-
task default: ['style:all', 'kitchen:all']
26-
else
27-
task default: ['style:all']
28-
end
18+
require 'kitchen/rake_tasks'
19+
Kitchen::RakeTasks.new
20+
21+
task default: %w(kitchen:all style:all)

‎attributes/default.rb

+6-24
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# common settings
77

8-
default['bitcoin']['variant'] = nil # possible variants: abc, bucash, core, unlimited, xt
8+
default['bitcoin']['variant'] = 'core' # possible variants: core
99

1010
default['bitcoin']['binary_name'] = 'bitcoind'
1111
default['bitcoin']['binary_cli_name'] = 'bitcoin-cli'
@@ -24,18 +24,9 @@
2424

2525
# 'binary' recipe
2626

27-
default['bitcoin']['binary']['version']['core'] = '0.18.1'
28-
default['bitcoin']['binary']['version']['unlimited'] = '1.0.3.0'
29-
default['bitcoin']['binary']['version']['bucash'] = '1.6.0.1'
30-
default['bitcoin']['binary']['version']['abc'] = '0.20.0'
31-
default['bitcoin']['binary']['url']['core'] = "https://bitcoin.org/bin/bitcoin-core-#{node['bitcoin']['binary']['version']['core']}/bitcoin-#{node['bitcoin']['binary']['version']['core']}-x86_64-linux-gnu.tar.gz"
32-
default['bitcoin']['binary']['url']['unlimited'] = "https://www.bitcoinunlimited.info/downloads/bitcoinUnlimited-#{node['bitcoin']['binary']['version']['unlimited']}-linux64.tar.gz"
33-
default['bitcoin']['binary']['url']['bucash'] = "https://www.bitcoinunlimited.info/downloads/BUcash-#{node['bitcoin']['binary']['version']['bucash']}-linux64.tar.gz"
34-
default['bitcoin']['binary']['url']['abc'] = "https://download.bitcoinabc.org/#{node['bitcoin']['binary']['version']['abc']}/linux/bitcoin-abc-#{node['bitcoin']['binary']['version']['abc']}-x86_64-linux-gnu.tar.gz"
35-
default['bitcoin']['binary']['checksum']['core'] = '600d1db5e751fa85903e935a01a74f5cc57e1e7473c15fd3e17ed21e202cfe5a'
36-
default['bitcoin']['binary']['checksum']['unlimited'] = 'a6658bac22f082539969a243943c7d1a865abd40cdfe39465ff82b4eba387b22'
37-
default['bitcoin']['binary']['checksum']['bucash'] = '68023e6faefe7cfee8eee6cffb6200f52d47aa89c305323d97063664b514c94c'
38-
default['bitcoin']['binary']['checksum']['abc'] = 'c00afe0f23163a64b692f9633ab0f49af7eedde32aa7b768582a0a731bb6d013'
27+
default['bitcoin']['binary']['version']['core'] = '27.0'
28+
default['bitcoin']['binary']['url']['core'] = "https://bitcoincore.org/bin/bitcoin-core-#{node['bitcoin']['binary']['version']['core']}/bitcoin-#{node['bitcoin']['binary']['version']['core']}-x86_64-linux-gnu.tar.gz"
29+
default['bitcoin']['binary']['checksum']['core'] = '2a6974c5486f528793c79d42694b5987401e4a43c97f62b1383abf35bcee44a8'
3930

4031
# 'package' recipe
4132

@@ -46,18 +37,9 @@
4637

4738
# 'source' recipe
4839

49-
default['bitcoin']['source']['version']['core'] = 'v0.18.1'
50-
default['bitcoin']['source']['version']['unlimited'] = '1.0.1.3'
51-
default['bitcoin']['source']['version']['bucash'] = '1.6.0.1'
52-
default['bitcoin']['source']['version']['abc'] = '0.20.0'
40+
default['bitcoin']['source']['version']['core'] = '27.0'
5341
default['bitcoin']['source']['url']['core'] = "https://github.com/bitcoin/bitcoin/archive/#{node['bitcoin']['source']['version']['core']}.tar.gz"
54-
default['bitcoin']['source']['url']['unlimited'] = "https://github.com/BitcoinUnlimited/BitcoinUnlimited/archive/#{node['bitcoin']['source']['version']['unlimited']}.tar.gz"
55-
default['bitcoin']['source']['url']['bucash'] = "https://github.com/BitcoinUnlimited/BitcoinUnlimited/archive/bucash#{node['bitcoin']['source']['version']['bucash']}.tar.gz"
56-
default['bitcoin']['source']['url']['abc'] = "https://github.com/Bitcoin-ABC/bitcoin-abc/archive/v#{node['bitcoin']['source']['version']['abc']}.tar.gz"
57-
default['bitcoin']['source']['checksum']['core'] = '5c7d93f15579e37aa2d1dc79e8f5ac675f59045fceddf604ae0f1550eb03bf96'
58-
default['bitcoin']['source']['checksum']['unlimited'] = '50e9f948ef27d583cd411bf0925da40ee55a515ce3c7745404f6aa1de6503c06'
59-
default['bitcoin']['source']['checksum']['bucash'] = '329f2bbe508d3dddb62fda284f33b42e346ef9ba1e1eb09924d592c98d7adc23'
60-
default['bitcoin']['source']['checksum']['abc'] = '5a26a8ae8c1cdb4769e4277335733782a6b9bce97af54e1bffeac489c68f3975'
42+
default['bitcoin']['source']['checksum']['core'] = '9c1ee651d3b157baccc3388be28b8cf3bfcefcd2493b943725ad6040ca6b146b'
6143
default['bitcoin']['source']['dependencies']['debian'] = %w(
6244
build-essential libtool autoconf pkg-config libssl-dev libevent-dev
6345
libboost-system-dev libboost-filesystem-dev libboost-chrono-dev

‎metadata.rb

+4-5
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@
66
source_url 'https://github.com/infertux/chef-bitcoin'
77
issues_url 'https://github.com/infertux/chef-bitcoin/issues'
88

9-
version '1.8.0'
10-
chef_version '>= 13.3'
9+
version '2.0.0'
10+
chef_version '>= 18'
1111

12-
supports 'debian'
13-
supports 'ubuntu'
14-
supports 'centos'
12+
supports 'debian', '>= 11.0'
1513
supports 'freebsd'
14+
supports 'ubuntu', '>= 22.04'

‎templates/default/bitcoin.conf.erb

+1-5
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,8 @@ server=1
22
checkblocks=<%= node['bitcoin']['checkblocks'] %>
33
rpcbind=127.0.0.1
44
rpcallowip=127.0.0.1
5-
txindex=1 # needed for ElectrumX server
5+
txindex=1 # needed for ElectrumX/Fulcrum server
66
par=-1
7-
<% if %w(abc core xt).include?(node['bitcoin']['variant']) %>
8-
sendfreetransactions=1
9-
mempoolreplacement=0 # no RBF
10-
<% end %>
117
dbcache=500 # set if you have 4+ GiB RAM
128
#maxconnections=50 # set to limit bandwidth usage
139
#prune=20000 # set if you have low disk space (in MB)

‎test/integration/default/bats/bitcoin_installed.bats

-11
This file was deleted.
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
describe command('sudo -u bitcoin -- bitcoin-cli -version') do
2+
its('exit_status') { should eq 0 }
3+
its('stdout') { should include "Bitcoin Core RPC client" }
4+
end

0 commit comments

Comments
 (0)
Please sign in to comment.