https://github.com/codeforequity-at/botium-connector-lex
Botium Connector for Amazon Lex
https://github.com/codeforequity-at/botium-connector-lex
alexa amazon automation-test botium chatbot lex test
Last synced: 6 months ago
JSON representation
Botium Connector for Amazon Lex
- Host: GitHub
- URL: https://github.com/codeforequity-at/botium-connector-lex
- Owner: codeforequity-at
- License: mit
- Created: 2019-02-07T12:07:19.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-10-04T08:46:28.000Z (about 1 year ago)
- Last Synced: 2025-04-11T06:17:32.389Z (6 months ago)
- Topics: alexa, amazon, automation-test, botium, chatbot, lex, test
- Language: JavaScript
- Homepage: https://www.botium.ai
- Size: 199 KB
- Stars: 3
- Watchers: 5
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Botium Connector for Amazon Lex
[](https://nodei.co/npm/botium-connector-lex/)
[](https://app.codeship.com/projects/326745)
[](https://badge.fury.io/js/botium-connector-lex)
[]()This is a [Botium](https://github.com/codeforequity-at/botium-core) connector for testing your Amazon Lex chatbot.
__Did you read the [Botium in a Nutshell](https://medium.com/@floriantreml/botium-in-a-nutshell-part-1-overview-f8d0ceaf8fb4) articles? Be warned, without prior knowledge of Botium you won't be able to properly use this library!__
## How it works
Botium connects to the [Amazon Lex API](https://docs.aws.amazon.com/de_de/lex/latest/dg/API_Reference.html).It can be used as any other Botium connector with all Botium Stack components:
* [Botium CLI](https://github.com/codeforequity-at/botium-cli/)
* [Botium Bindings](https://github.com/codeforequity-at/botium-bindings/)
* [Botium Box](https://www.botium.at)This connector processes info about NLP. So Intent/Entity asserters can be used. (Does not returns confidences, and alternative intents)
## Requirements
* **Node.js and NPM**
* a **published Lex bot**, and user account with administrative rights
* a **project directory** on your workstation to hold test cases and Botium configuration## Install Botium and Amazon Lex Connector
When using __Botium CLI__:
```
> npm install -g botium-cli
> npm install -g botium-connector-lex
> botium-cli init
> botium-cli run
```When using __Botium Bindings__:
```
> npm install -g botium-bindings
> npm install -g botium-connector-lex
> botium-bindings init mocha
> npm install && npm run mocha
```When using __Botium Box__:
_Already integrated into Botium Box, no setup required_
## Connecting Amazon Lex to Botium
There are two possibilities to connect to Amazon Lex:
### Connect with Amazon Access Keys
You have to create an **IAM user** to enable Botium to access the Amazon Lex API.* [Create an IAM user](https://console.aws.amazon.com/iam/) (see [here](https://docs.aws.amazon.com/de_de/IAM/latest/UserGuide/id_users_create.html) for help)
* Important: choose _Programmatic access_ as access type
* Note access key and secret, you need it later
* Choose _Attach existing policies to user directly_ to give permissions _AmazonLexFullAccess_
* Feel free to use finer grained policies if you know what you are doing,
or read [Authentication and Access Control for Amazon Lex](https://docs.aws.amazon.com/lex/latest/dg/auth-and-access-control.html)### Connect with Assuming Amazon IAM Role
* [Create an IAM Role](https://console.aws.amazon.com/iam/) (see [here](https://docs.aws.amazon.com/de_de/IAM/latest/UserGuide/id_roles_create_for-service.html))
* Choose _Attach existing policies to user directly_ to give permissions _AmazonLexFullAccess_
* Feel free to use finer grained policies if you know what you are doing,
or read [Authentication and Access Control for Amazon Lex](https://docs.aws.amazon.com/lex/latest/dg/auth-and-access-control.html)
* Add a trust policy (see [here](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-user_externalid.html))
* The external Id has to to be provided as Capability
* The Role ARN has to to be provided as CapabilityCreate a botium.json with
* Amazon region where you have created your bot. See [Amazon Lex Console](https://console.aws.amazon.com/lex)
* access key and secret of IAM user,
* name of the bot
* alias of the bot (see publishing)```
{
"botium": {
"Capabilities": {
"PROJECTNAME": "",
"CONTAINERMODE": "lex",
"LEX_REGION": "xxx",
"LEX_AUTH_MODE": "xxx",
"LEX_ROLE_ARN": "xxx",
"LEX_ROLE_EXTERNAL_ID": "xxx",
"LEX_ACCESS_KEY_ID": "xxx",
"LEX_SECRET_ACCESS_KEY": "xxx",
"LEX_PROJECT_NAME": "xxx",
"LEX_PROJECT_ALIAS": "xxx"
}
}
}
```To check the configuration, run the emulator (Botium CLI required) to bring up a chat interface in your terminal window:
```
> botium-cli emulator
```Botium setup is ready, you can begin to write your [BotiumScript](https://botium-docs.readthedocs.io/en/latest/05_botiumscript/index.html) files.
## How to start sample
There is a small demo in [samples/BookTrip dir](./samples/BookTrip) with Botium Bindings. This tests the BookTrip template of Amazon Lex. To start it you have to :
* Create and publish a bot from the template
* Go to [console](https://console.aws.amazon.com/lex/home)
* Choose **region** (top right) and note it, you need it later
* Click _Create_
* Choose _BookTrip_
* Choose a **name** and note it, you need it later
* Accept COPPA
* Click _Create_ to create the Lex project
* Now click _Publish_ and select an **alias**
* Adapt botium.json in the sample directory
* Run the sample```
> cd ./samples/BookTrip
> npm install && npm test
```## Setting Session and Request Attributes
**Session attributes** can be initialized with the _LEX_SESSION_ATTRIBUTES_-capability (see below). They will be updated on each Lex response.
They can be updated within a conversation as well:
#me
I would like to order some flowers
UPDATE_CUSTOM SET_LEX_SESSION_ATTRIBUTE|attr1|attr1-value**Request attributes** to be used on each request can be set with the _LEX_REQUEST_ATTRIBUTES_-capability (see below)
They can be given within a conversation as well:
#me
I would like to order some flowers
UPDATE_CUSTOM SET_LEX_REQUEST_ATTRIBUTE|attr2|attr2-value## Using the botium-connector-lex-cli
This connector provides a CLI interface for importing convos and utterances from your Amazon Lex bot and convert it to BotiumScript.
* Bot intents and user examples are mapped to utterances in BotiumScript
* Slots in user examples are either filled with enumeration values (for enumeration slot types) or with samples values from the [official documentation](https://developer.amazon.com/de/docs/custom-skills/slot-type-reference.html)
* Convos are using the utterances as input and attach an INTENT asserter
* If using the _--buildentities_ switch, the utterances are separated by slot names and an additional ENTITIES asserter is attachedYou can either run the CLI with *[botium-cli](https://github.com/codeforequity-at/botium-cli) (recommended - it is integrated there)*, or directly from this connector (see samples/BookTrip directory for some examples):
> npx botium-connector-lex-cli import --buildconvos --buildentities --output spec/convo
_Please note that you will have to install the npm package botium-core manually before using this CLI_
For getting help on the available CLI options and switches, run:
> npx botium-connector-lex-cli import --help
## Supported Capabilities
Set the capability __CONTAINERMODE__ to __lex__ to activate this connector.
### LEX_VERSION
_Default: V1_V1 or V2
### LEX_AUTH_MODE
See Connecting Amazon Lex to Botium### LEX_ROLE_ARN
See Connecting Amazon Lex to Botium### LEX_ROLE_EXTERNAL_ID
See Connecting Amazon Lex to Botium### LEX_ACCESS_KEY_ID
See Connecting Amazon Lex to Botium### LEX_SECRET_ACCESS_KEY
See Connecting Amazon Lex to Botium### LEX_REGION
Amazon region code where you have created your bot. [Amazon Lex V1 Console](https://console.aws.amazon.com/lex)/[Amazon Lex V2 Console](https://console.aws.amazon.com/lexv2)._Hint: a list of region codes is available [here](https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html)_
### LEX_PROJECT_NAME
The name (V1) or ID (V2) of the bot. See [Amazon Lex V1 Console](https://console.aws.amazon.com/lex)/[Amazon Lex V2 Console](https://console.aws.amazon.com/lexv2)._For Lex V2, use the Project **ID** instead of the name_
### LEX_PROJECT_ALIAS
The alias name (V1) or ID (V2) of the bot. (see Publishing section in the Amazon Lex Console)_For Lex V2, use the alias **ID** instead of the name_
### LEX_LOCALE (V2 only)
_Default: en\_US_Publishing alias locale. (see Publishing section in the Amazon Lex Console)
### LEX_SESSION_ATTRIBUTES
_Optional_.Initial session attributes. It must be object, or object as string. Lex supports just string attributes.
(otherwise retrurns error like "error sending to bot Error: Lex answered with error { InvalidParameterType: Expected params.sessionAttributes['somenumber'] to be a string")### LEX_REQUEST_ATTRIBUTES
_Optional_.Request attributes.
### LEX_ACCEPT
_Default: text/plain; charset=utf-8_The response content type. If you prefer to receive audio set it to one of the supported audio formats (see [Lex docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/LexRuntime.html#postContent-property))
### LEX_CONTENTTYPE_TEXT
_Default: text/plain; charset=utf-8_Content type used when sending text.
### LEX_CONTENTTYPE_AUDIO
_Default: audio/l16; rate=16000; channels=1_Content type used when sending audio. Has to match your audio data format.