100 lines
No EOL
5.8 KiB
JSON
100 lines
No EOL
5.8 KiB
JSON
{
|
|
"uuid": [
|
|
{
|
|
"value": "f39cb1f4-50c5-4e5b-91ac-985fdd9d3e39"
|
|
}
|
|
],
|
|
"langcode": [
|
|
{
|
|
"value": "en"
|
|
}
|
|
],
|
|
"type": [
|
|
{
|
|
"target_id": "daily_email",
|
|
"target_type": "node_type",
|
|
"target_uuid": "8bde1f2f-eef9-4f2d-ae9c-96921f8193d7"
|
|
}
|
|
],
|
|
"revision_timestamp": [
|
|
{
|
|
"value": "2025-04-21T01:21:38+00:00"
|
|
}
|
|
],
|
|
"revision_uid": [
|
|
{
|
|
"target_type": "user",
|
|
"target_uuid": "b8966985-d4b2-42a7-a319-2e94ccfbb849"
|
|
}
|
|
],
|
|
"revision_log": [],
|
|
"status": [
|
|
{
|
|
"value": true
|
|
}
|
|
],
|
|
"uid": [
|
|
{
|
|
"target_type": "user",
|
|
"target_uuid": "b8966985-d4b2-42a7-a319-2e94ccfbb849"
|
|
}
|
|
],
|
|
"title": [
|
|
{
|
|
"value": "Experimenting with Architectural Testing"
|
|
}
|
|
],
|
|
"created": [
|
|
{
|
|
"value": "2024-02-08T00:00:00+00:00"
|
|
}
|
|
],
|
|
"changed": [
|
|
{
|
|
"value": "2025-04-21T01:21:38+00:00"
|
|
}
|
|
],
|
|
"promote": [
|
|
{
|
|
"value": false
|
|
}
|
|
],
|
|
"sticky": [
|
|
{
|
|
"value": false
|
|
}
|
|
],
|
|
"default_langcode": [
|
|
{
|
|
"value": true
|
|
}
|
|
],
|
|
"revision_translation_affected": [
|
|
{
|
|
"value": true
|
|
}
|
|
],
|
|
"path": [
|
|
{
|
|
"alias": "\/daily\/2024\/02\/08\/experimenting-with-architectural-testing",
|
|
"langcode": "en"
|
|
}
|
|
],
|
|
"body": [
|
|
{
|
|
"value": "\n <p><a href=\"https:\/\/www.oliverdavies.uk\/daily\/2024\/02\/07\/running-tests-in-parallel-with-paratest\">In yesterday's email<\/a>, I mentioned parallel testing and speeding up your tests by running them in parallel.<\/p>\n\n<p>Something else I've been experimenting with recently in architectural testing with PHPat.<\/p>\n\n<p>For example, ensuring classes within a namespace are <code>final<\/code> or not, that Controller classes all extend <code>ControllerBase<\/code> and have the Controller suffix in their names.<\/p>\n\n<p>Going forward, I'd like to ensure that each Drupal module only uses its own classes and is separated, as I recently had an issue where I deleted a class method in one module only to find it was used in a different module.<\/p>\n\n<p>Here's what I have so far for my <a href=\"https:\/\/www.oliverdavies.uk\/atdc\">testing course codebase<\/a>:<\/p>\n\n<pre><code class=\"language-php\">final class ArchitectureTest {\n\n public function test_classes_should_be_final(): Rule {\n return PHPat::rule()\n ->classes(Selector::inNamespace('Drupal\\atdc'))\n ->shouldBeFinal();\n }\n\n public function test_controllers_should_extend_ControllerBase(): Rule {\n return PHPat::rule()\n ->classes(Selector::inNamespace('Drupal\\atdc\\Controller'))\n ->shouldExtend()\n ->classes(Selector::classname(ControllerBase::class));\n }\n\n public function test_controllers_should_have_the_Controller_suffix(): Rule {\n return PHPat::rule()\n ->classes(Selector::inNamespace('Drupal\\atdc\\Controller'))\n ->shouldBeNamed(\n classname: '\/Controller$\/',\n regex: TRUE,\n );\n }\n\n}\n<\/code><\/pre>\n\n<p>I plan to continue expanding this configuration as I become more familiar with PHPat, and because it's a PHPStan extension, it's already available to run within my projects locally and within the CI pipeline.<\/p>\n\n ",
|
|
"format": "full_html",
|
|
"processed": "\n <p><a href=\"https:\/\/www.oliverdavies.uk\/daily\/2024\/02\/07\/running-tests-in-parallel-with-paratest\">In yesterday's email<\/a>, I mentioned parallel testing and speeding up your tests by running them in parallel.<\/p>\n\n<p>Something else I've been experimenting with recently in architectural testing with PHPat.<\/p>\n\n<p>For example, ensuring classes within a namespace are <code>final<\/code> or not, that Controller classes all extend <code>ControllerBase<\/code> and have the Controller suffix in their names.<\/p>\n\n<p>Going forward, I'd like to ensure that each Drupal module only uses its own classes and is separated, as I recently had an issue where I deleted a class method in one module only to find it was used in a different module.<\/p>\n\n<p>Here's what I have so far for my <a href=\"https:\/\/www.oliverdavies.uk\/atdc\">testing course codebase<\/a>:<\/p>\n\n<pre><code class=\"language-php\">final class ArchitectureTest {\n\n public function test_classes_should_be_final(): Rule {\n return PHPat::rule()\n ->classes(Selector::inNamespace('Drupal\\atdc'))\n ->shouldBeFinal();\n }\n\n public function test_controllers_should_extend_ControllerBase(): Rule {\n return PHPat::rule()\n ->classes(Selector::inNamespace('Drupal\\atdc\\Controller'))\n ->shouldExtend()\n ->classes(Selector::classname(ControllerBase::class));\n }\n\n public function test_controllers_should_have_the_Controller_suffix(): Rule {\n return PHPat::rule()\n ->classes(Selector::inNamespace('Drupal\\atdc\\Controller'))\n ->shouldBeNamed(\n classname: '\/Controller$\/',\n regex: TRUE,\n );\n }\n\n}\n<\/code><\/pre>\n\n<p>I plan to continue expanding this configuration as I become more familiar with PHPat, and because it's a PHPStan extension, it's already available to run within my projects locally and within the CI pipeline.<\/p>\n\n ",
|
|
"summary": null
|
|
}
|
|
],
|
|
"feeds_item": [
|
|
{
|
|
"imported": "2025-04-21T01:21:38+00:00",
|
|
"guid": null,
|
|
"hash": "455ff869c592cdd12244b2264b5b2dff",
|
|
"target_type": "feeds_feed",
|
|
"target_uuid": "90c85284-7ca8-4074-9178-97ff8384fe76"
|
|
}
|
|
]
|
|
} |