mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-07-22 11:51:04 +02:00
* ViciDial Working * feat(telephony): add FreeSWITCH provider to upstream-PBX seam Generalize the upstream-PBX capture and control paths to dispatch by provider. FreeSWITCH bridges in with X-PBX-* headers and is driven over the Event Socket Library (uuid_kill / uuid_transfer) by the channel UUID, alongside the existing VICIdial ra_call_control path. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * add vici specific configs * feat(telephony): env-based VICIdial config + address3 post-call routing Move VICIdial agent/non-agent API and FreeSWITCH ESL connection settings out of hardcoded POC values into environment variables so the same image works against a PBX on another server. Add VICIdial update_lead forwarding: X-VICI-UPDATE-LEAD_* extracted variables are mapped to lead columns and pushed via the non-agent API before a transfer, with reserved API-control params dropped. Add hardcoded address3 disposition routing (Y/N -> in-group transfer, else hang up) and a synchronous final variable extraction so the transfer path sees the freshest conversation state. Skip upstream_pbx capture on non-PJSIP channels to avoid Asterisk 500s. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * chore: run formatter * feat: make vici configurable from UI * chore: clean up PR * fix: incorporate review comments * chore: incorporate review comments * chore: generate client * chore: incporporate review comments * chore: incorporate review comments --------- Co-authored-by: Dograh POC <payment@dograh.com> Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
90 lines
3.1 KiB
Python
90 lines
3.1 KiB
Python
import pytest
|
|
from pydantic import ValidationError
|
|
|
|
from api.schemas.workflow_configurations import (
|
|
DEFAULT_MAX_CALL_DURATION_SECONDS,
|
|
MAX_CALL_DURATION_SECONDS,
|
|
WorkflowConfigurationDefaults,
|
|
)
|
|
|
|
|
|
def test_max_call_duration_default_within_bounds():
|
|
config = WorkflowConfigurationDefaults()
|
|
assert config.max_call_duration == DEFAULT_MAX_CALL_DURATION_SECONDS
|
|
|
|
|
|
def test_max_call_duration_accepts_cap():
|
|
config = WorkflowConfigurationDefaults(max_call_duration=MAX_CALL_DURATION_SECONDS)
|
|
assert config.max_call_duration == MAX_CALL_DURATION_SECONDS
|
|
|
|
|
|
def test_max_call_duration_rejects_over_cap():
|
|
with pytest.raises(ValidationError):
|
|
WorkflowConfigurationDefaults(max_call_duration=MAX_CALL_DURATION_SECONDS + 1)
|
|
|
|
|
|
def test_max_call_duration_rejects_non_positive():
|
|
with pytest.raises(ValidationError):
|
|
WorkflowConfigurationDefaults(max_call_duration=0)
|
|
|
|
|
|
def test_null_values_treated_as_unset():
|
|
"""Stored configs / older clients send explicit JSON nulls for keys the
|
|
user never configured; they must validate as defaults, not fail."""
|
|
config = WorkflowConfigurationDefaults.model_validate(
|
|
{
|
|
"max_call_duration": None,
|
|
"turn_start_strategy": None,
|
|
"turn_start_min_words": None,
|
|
}
|
|
)
|
|
assert config.max_call_duration == DEFAULT_MAX_CALL_DURATION_SECONDS
|
|
# Nulls count as unset, so a sparse round-trip drops them entirely.
|
|
assert config.model_dump(exclude_unset=True) == {}
|
|
|
|
|
|
def test_exclude_unset_round_trip_stays_sparse():
|
|
config = WorkflowConfigurationDefaults.model_validate(
|
|
{"max_call_duration": 600, "custom_extra_key": {"a": 1}}
|
|
)
|
|
assert config.model_dump(exclude_unset=True) == {
|
|
"max_call_duration": 600,
|
|
"custom_extra_key": {"a": 1},
|
|
}
|
|
|
|
|
|
def test_cap_stays_within_concurrency_stale_timeout():
|
|
"""A call outliving the rate limiter's stale window has its concurrency
|
|
slot purged mid-call, so the cap must never exceed it."""
|
|
from api.services.campaign.rate_limiter import rate_limiter
|
|
|
|
assert MAX_CALL_DURATION_SECONDS <= rate_limiter.stale_call_timeout
|
|
|
|
|
|
def test_external_pbx_field_mapping_is_validated():
|
|
config = WorkflowConfigurationDefaults(
|
|
external_pbx_field_mappings=[
|
|
{"context_path": " qualified ", "destination_field": " address3 "}
|
|
]
|
|
)
|
|
|
|
assert config.external_pbx_field_mappings[0].context_path == "qualified"
|
|
assert config.external_pbx_field_mappings[0].destination_field == "address3"
|
|
|
|
|
|
def test_external_pbx_field_mapping_rejects_blank_context_paths():
|
|
with pytest.raises(ValidationError, match="context_path"):
|
|
WorkflowConfigurationDefaults(
|
|
external_pbx_field_mappings=[
|
|
{"context_path": " ", "destination_field": "address3"}
|
|
]
|
|
)
|
|
|
|
|
|
def test_external_pbx_field_mapping_rejects_invalid_field_names():
|
|
with pytest.raises(ValidationError, match="destination_field"):
|
|
WorkflowConfigurationDefaults(
|
|
external_pbx_field_mappings=[
|
|
{"context_path": "qualified", "destination_field": "invalid-field"}
|
|
]
|
|
)
|