* DialogStateManager.getValue does not throw for missing Scope (DotNet parity)

* Corrected DialogStateManager test

---------

Co-authored-by: Tracy Boehrer <trboehre@microsoft.com>
This commit is contained in:
tracyboehrer 2024-04-02 07:52:19 -05:00 коммит произвёл GitHub
Родитель 6782cddb33
Коммит 7ceb965f36
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -118,7 +118,8 @@ export class DialogStateManager {
// Get memory scope to search over
const scope = this.getMemoryScope(segments[0].toString());
if (scope == undefined) {
throw new Error(`DialogStateManager.getValue: a scope of '${segments[0]}' wasn't found.`);
console.warn(`DialogStateManager.getValue: a scope of '${segments[0]}' wasn't found for '${pathExpression}'.`);
return returnDefault();
}
// Search over path

Просмотреть файл

@ -229,7 +229,7 @@ describe('Dialog State Manager', function () {
});
it('raise an error if getValue() called with an invalid scope.', function () {
assert.throws(() => this.dc.state.getValue('foo.bar'));
assert.strictEqual(this.dc.state.getValue('foo.bar'), undefined);
});
it('raise an error if setValue() called with missing path.', function () {