first commit

This commit is contained in:
2024-07-15 12:33:27 +02:00
commit ce50ae282b
22084 changed files with 2623791 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
name: 'Base theme and views'
type: 'Testing'
install:
- test_subsubtheme
- node
- views

View File

@@ -0,0 +1,13 @@
name: 'Config actions'
type: 'Testing'
install:
- config_test
config:
actions:
config_test.dynamic.recipe:
createIfNotExists:
label: 'Created by recipe'
setProtectedProperty: 'Set by recipe'
config_test.system:
simpleConfigUpdate:
foo: 'not bar'

View File

@@ -0,0 +1,9 @@
name: Recipe with direct dependency present
type: 'Testing'
install:
- node
config:
actions:
node.settings:
simpleConfigUpdate:
use_admin_theme: true

View File

@@ -0,0 +1,9 @@
name: Recipe with first level indirect dependency
type: 'Testing'
recipes:
- level_2
config:
actions:
node.settings:
simpleConfigUpdate:
use_admin_theme: true

View File

@@ -0,0 +1,9 @@
name: Recipe with second level indirect dependency
type: 'Testing'
recipes:
- level_1
config:
actions:
node.settings:
simpleConfigUpdate:
use_admin_theme: true

View File

@@ -0,0 +1,4 @@
name: First level sub recipe
type: 'Testing'
recipes:
- level_2

View File

@@ -0,0 +1,4 @@
name: Second level sub recipe
type: 'Testing'
install:
- node

View File

@@ -0,0 +1,9 @@
name: 'Config from module'
type: 'Testing'
install:
- config_test
config:
import:
config_test:
- config_test.dynamic.dotted.default
- config_test.dynamic.override

View File

@@ -0,0 +1,11 @@
name: 'Config from module and recipe'
type: 'Testing'
install:
- config_test
- shortcut
- system
config:
import:
config_test: '*'
shortcut:
- shortcut.set.default

View File

@@ -0,0 +1,19 @@
name: Config rollback exception
install:
- filter
- media
config:
import:
filter: '*'
media: '*'
actions:
filter.format.plain_text:
setFilterConfig:
instance_id: media_embed
configuration: []
system.image:
# This will cause a validation error, which will trigger a rollback.
# The rollback should fail, since the Media module can't be uninstalled
# now that the plain_text format is using one of its filters.
simpleConfigUpdate:
non_existent_key: whatever!

View File

@@ -0,0 +1,10 @@
name: 'Config wildcard'
type: 'Testing'
install:
- config_test
- shortcut
- system
config:
import:
config_test: '*'
shortcut: ~

View File

@@ -0,0 +1,5 @@
name: 'Install node with config'
type: 'Content type'
install:
- node
- drupal:text

View File

@@ -0,0 +1,5 @@
name: 'Install two modules'
type: 'Content type'
install:
- node
- text

View File

@@ -0,0 +1,2 @@
name: 'Invalid config'
type: 'Testing'

View File

@@ -0,0 +1,3 @@
name: 'No extensions'
description: 'A recipe description'
type: 'Testing'

View File

@@ -0,0 +1,4 @@
name: 'Recipe depending on an invalid recipe'
type: 'Testing'
recipes:
- invalid_config

View File

@@ -0,0 +1,5 @@
name: 'Recipe depending on first installing modules, then a recipe with invalid config'
type: 'Testing'
recipes:
- install_two_modules
- invalid_config

View File

@@ -0,0 +1,6 @@
name: 'Recipe include'
type: 'Testing'
recipes:
- install_node_with_config
install:
- dblog

View File

@@ -0,0 +1,5 @@
name: 'Theme with module dependencies'
type: 'Testing'
install:
- test_theme_depending_on_modules
- test_module_required_by_theme

View File

@@ -0,0 +1,2 @@
name: 'Unmet config dependencies'
type: 'Testing'