Skip to content

Commit

Permalink
samples: set project-level TTL (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
TrucHLe authored Sep 20, 2021
1 parent 871090a commit c417f8d
Show file tree
Hide file tree
Showing 2 changed files with 110 additions and 0 deletions.
55 changes: 55 additions & 0 deletions contact-center-insights/setProjectTtl.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
// 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(projectId) {
// [START contactcenterinsights_set_project_ttl]
/**
* TODO(developer): Uncomment this variable before running the sample.
*/
// const projectId = 'my_project_id';

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

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

async function setProjectTtl() {
await client.updateSettings({
settings: {
name: client.settingsPath(projectId, 'us-central1'),
conversationTtl: {
seconds: 86400,
},
},
updateMask: {
paths: ['conversation_ttl'],
},
});
console.info('Set TTL for all incoming conversations to 1 day');
}
setProjectTtl();
// [END contactcenterinsights_set_project_ttl]
}

process.on('unhandledRejection', err => {
console.error(err.message);
process.exitCode = 1;
});
main(...process.argv.slice(2));
55 changes: 55 additions & 0 deletions contact-center-insights/test/setProjectTtl.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
// 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 {after, 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('SetProjectTtl', () => {
let projectId;

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

after(async () => {
// Clears project-level TTL.
await client.updateSettings({
settings: {
name: client.settingsPath(projectId, 'us-central1'),
conversationTtl: {},
},
updateMask: {
paths: ['conversation_ttl'],
},
});
});

it('should set a project-level TTL', async () => {
const stdout = execSync(`node ./setProjectTtl.js ${projectId}`);
assert.match(
stdout,
new RegExp('Set TTL for all incoming conversations to 1 day')
);
});
});

0 comments on commit c417f8d

Please sign in to comment.