Skip to content

Commit acbfb42

Browse files
authored
Rename 'API Doc' content type to 'OpenAPI Doc' (#160)
* Rename 'API Doc' content type to 'OpenAPI Doc' * Updated Test case accordingly
1 parent a4a12d9 commit acbfb42

6 files changed

+28
-8
lines changed

apigee_api_catalog.install

+7
Original file line numberDiff line numberDiff line change
@@ -141,3 +141,10 @@ function apigee_api_catalog_update_8807() {
141141
function apigee_api_catalog_update_8808() {
142142
return \Drupal::service('apigee_api_catalog.updates')->update8808();
143143
}
144+
145+
/**
146+
* Rename API Doc content type as OpenAPI Doc.
147+
*/
148+
function apigee_api_catalog_update_8809() {
149+
return \Drupal::service('apigee_api_catalog.updates')->update8809();
150+
}

apigee_api_catalog.links.action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
node.apidoc.add_form:
22
route_name: node.add
3-
title: 'Add API Doc'
3+
title: 'OpenAPI'
44
route_parameters:
55
node_type: 'apidoc'
66
appears_on:

config/install/node.type.apidoc.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ dependencies:
44
enforced:
55
module:
66
- apigee_api_catalog
7-
name: 'API Doc'
7+
name: 'OpenAPI Doc'
88
type: apidoc
9-
description: 'Use <em>API Docs</em> to document APIs'
9+
description: 'Use <em>OpenAPI Docs</em> to document OpenAPIs'
1010
help: ''
1111
new_revision: true
1212
preview_mode: 1

config/optional/views.view.api_catalog_admin.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies:
1010
- node
1111
- user
1212
id: api_catalog_admin
13-
label: 'API Catalog Admin'
13+
label: 'APIDoc Catalog Admin'
1414
module: views
1515
description: 'The administrative view of the API catalog for adding and updating API specifications.'
1616
tag: ''
@@ -623,7 +623,7 @@ display:
623623
entity_type: node
624624
entity_field: status
625625
sorts: { }
626-
title: 'API Doc Catalog'
626+
title: 'APIDoc Catalog'
627627
header: { }
628628
footer: { }
629629
empty:

src/UpdateService.php

+13
Original file line numberDiff line numberDiff line change
@@ -413,6 +413,19 @@ public function update8808() {
413413

414414
}
415415

416+
/**
417+
* Rename API Doc content type as OpenAPI Doc.
418+
*/
419+
public function update8809() {
420+
// Display field_api_product on the form display.
421+
\Drupal::entityTypeManager()
422+
->getStorage('node_type')
423+
->load('apidoc')
424+
->set('name', 'OpenAPI Doc')
425+
->set('description', 'Use <em>OpenAPI Docs</em> to document OpenAPIs')
426+
->save();
427+
}
428+
416429
/**
417430
* Get the field map from apidoc fields to node fields.
418431
*

tests/src/Functional/ApiDocsAdminTest.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ public function testApiDocAdministration() {
9797
$assert->pageTextContains('There are no API docs yet.');
9898

9999
// User can add entity content.
100-
$assert->linkExists('Add API Doc');
101-
$this->clickLink('Add API Doc');
100+
$assert->linkExists('OpenAPI');
101+
$this->clickLink('OpenAPI');
102102

103103
// Fields should have proper defaults.
104104
$assert->fieldValueEquals('title[0][value]', '');
@@ -132,7 +132,7 @@ public function testApiDocAdministration() {
132132
$this->getSession()->getPage()->pressButton(t('Save'));
133133

134134
$assert->statusCodeEquals(200);
135-
$assert->pageTextContains(new FormattableMarkup('API Doc @name has been created.', ['@name' => $random_name]));
135+
$assert->pageTextContains(new FormattableMarkup('OpenAPI Doc @name has been created.', ['@name' => $random_name]));
136136

137137
// Entity listed.
138138
$assert->linkExists($random_name);

0 commit comments

Comments
 (0)