Skip to content

Commit

Permalink
samples: get operation (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
TrucHLe authored Sep 10, 2021
1 parent 6951ead commit 13466b6
Show file tree
Hide file tree
Showing 2 changed files with 97 additions and 0 deletions.
47 changes: 47 additions & 0 deletions contact-center-insights/getOperation.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
// Copyright 2021 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//

'use strict';

function main(operationName) {
// [START contactcenterinsights_get_operation]
/**
* TODO(developer): Uncomment this variable before running the sample.
*/
// const operationName = 'projects/my_project_id/locations/us-central1/operations/my_operation_id';

// Imports the Contact Center Insights client.
const {
ContactCenterInsightsClient,
} = require('@google-cloud/contact-center-insights');

// Instantiates a client.
const client = new ContactCenterInsightsClient();

async function getOperation() {
const [operation] = await client.operationsClient.getOperation({
name: operationName,
});
console.info(`Got operation ${operation.name}.`);
}
getOperation();
// [END contactcenterinsights_get_operation]
}

process.on('unhandledRejection', err => {
console.error(err.message);
process.exitCode = 1;
});
main(...process.argv.slice(2));
50 changes: 50 additions & 0 deletions contact-center-insights/test/getOperation.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
// Copyright 2021 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//

'use strict';

const {assert} = require('chai');
const {before, describe, it} = require('mocha');
const cp = require('child_process');
const execSync = cmd => cp.execSync(cmd, {encoding: 'utf-8'});

const {
ContactCenterInsightsClient,
} = require('@google-cloud/contact-center-insights');
const client = new ContactCenterInsightsClient();

describe('GetOperation', () => {
let projectId;

before(async () => {
projectId = await client.getProjectId();
});

it('should get an operation', async () => {
/**
* TODO(developer): Replace this variable with your operation name.
*/
const operationName = `projects/${projectId}/locations/us-central1/operations/12345`;

try {
const stdout = execSync(`node ./getOperation.js ${operationName}`);
assert.match(stdout, new RegExp(`Got operation ${operationName}`));
} catch (e) {
if (!e.message.includes('not found')) {
throw e;
}
}
});
});

0 comments on commit 13466b6

Please sign in to comment.