Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/zowe/zowe-cli-mq-plugin i…
Browse files Browse the repository at this point in the history
…nto update-next

Signed-off-by: zFernand0 <[email protected]>
  • Loading branch information
zFernand0 committed Sep 20, 2024
2 parents b850151 + 61de89f commit 9ae08d0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ The following code block should be inserted into the Changelog above the last re

## Primary Contribution Guidelines

We provide specific guidelines for developing Zowe MQ plug-in in the [Zowe CLI GitHub repository](https://github.com/zowe/mq-config). The following information is critical to working with the code, running/writing/maintaining automated tests, developing consistent syntax in your plug-in, and ensuring that your plug-in integrates with Zowe CLI properly:
We provide specific guidelines for developing Zowe MQ plug-in in the [Zowe CLI GitHub repository](https://github.com/zowe/zowe-cli). The following information is critical to working with the code, running/writing/maintaining automated tests, developing consistent syntax in your plug-in, and ensuring that your plug-in integrates with Zowe CLI properly:

| For more information about ... | See: |
| ------------------------------ | ----- |
| General guidelines that apply to contributing to Zowe CLI and Plug-ins | [Contribution Guidelines](https://github.com/zowe/zowe-cli/blob/master/CONTRIBUTING.md) |
| Conventions and best practices for creating packages and plug-ins for Zowe CLI | [Package and Plug-in Guidelines](https://github.com/zowe/zowe-cli/blob/master/docs/PackagesAndPluginGuidelines.md)|
| Guidelines for running tests on Zowe CLI | [Testing Guidelines](https://github.com/zowe/zowe-cli/blob/master/docs/TESTING.md) |
| Guidelines for running tests on the plug-ins that you build for Zowe CLI | [Plug-in Testing Guidelines](https://github.com/zowe/zowe-cli/blob/master/docs/PluginTESTINGGuidelines.md) |
| Documentation that describes the features of the Imperative CLI Framework | [About Imperative CLI Framework](https://github.com/zowe/imperative/wiki) |
| Documentation that describes the features of the Imperative CLI Framework | [About Imperative CLI Framework](https://github.com/zowe/zowe-cli/wiki) |
Versioning conventions for Zowe CLI and Plug-ins| [Versioning Guidelines](https://github.com/zowe/zowe-cli/blob/master/docs/MaintainerVersioning.md) |

## Contribution Guidelines Specific to the IBM MQ Plug-in for Zowe CLI
Expand Down
3 changes: 2 additions & 1 deletion __tests__/__src__/TestUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export function createSession(testEnvironment: ITestEnvironment<ITestPropertiesS
port: SYSTEM_PROPS.mq.port,
type: "basic",
rejectUnauthorized: false,
basePath: SYSTEM_PROPS.mq.basepath
basePath: SYSTEM_PROPS.mq.basepath,
protocol: SYSTEM_PROPS.mq.protocol,
});
}
6 changes: 6 additions & 0 deletions __tests__/__src__/doc/ITestPropertiesSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
*
*/

import { SessConstants } from "@zowe/imperative";

/**
* Interface representing the values in the custom_properties.yaml file
* see example_properties.yaml for descriptions and more details
Expand Down Expand Up @@ -43,6 +45,10 @@ export interface ITestPropertiesSchema {
* The location of the API
*/
basepath: string,
/**
* Protocol for MQ
*/
protocol?: SessConstants.HTTP_PROTOCOL_CHOICES,
/**
* The Queue manager
*/
Expand Down
Empty file.
Empty file modified __tests__/__system__/cli/__scripts__/query_queue_manager.sh
100644 → 100755
Empty file.

0 comments on commit 9ae08d0

Please sign in to comment.