コード例 #1
0
ファイル: test_entities.py プロジェクト: jchristov/modeldb
    def test_crud_workspace(self, client, organization, strs,
                            created_entities):
        strs = iter(strs)
        name = _utils.generate_default_name()
        workspace = organization.name
        notification_channels = client.operations.notification_channels

        personal_channel = notification_channels.create(
            name,
            SlackNotificationChannel(next(strs)),
        )
        created_entities.append(personal_channel)
        assert personal_channel.workspace == client.get_workspace()
        assert personal_channel.id == notification_channels.get(name).id
        listed_channels = notification_channels.list()
        assert personal_channel.id in [c.id for c in listed_channels]

        # same name, different workspace
        org_channel = notification_channels.create(
            name,
            SlackNotificationChannel(next(strs)),
            workspace=workspace,
        )
        created_entities.append(org_channel)
        assert org_channel.workspace == workspace
        with pytest.warns(None) as record:
            assert org_channel.id == notification_channels.get(
                name, workspace=workspace).id
        assert not record  # no warning of multiple channels found
        listed_channels = notification_channels.list(workspace=workspace)
        assert len(listed_channels) == 1
        assert org_channel.id == listed_channels[0].id
コード例 #2
0
ファイル: test_entities.py プロジェクト: jchristov/modeldb
    def test_add_notification_channels(
        self,
        client,
        monitored_entity,
        created_entities,
    ):
        alerts = monitored_entity.alerts
        name = _utils.generate_default_name()
        alerter = FixedAlerter(comparison.GreaterThan(0.7))
        sample_query = SummarySampleQuery()

        channel1 = client.operations.notification_channels.create(
            _utils.generate_default_name(),
            SlackNotificationChannel(_utils.generate_default_name()),
        )
        created_entities.append(channel1)
        channel2 = client.operations.notification_channels.create(
            _utils.generate_default_name(),
            SlackNotificationChannel(_utils.generate_default_name()),
        )
        created_entities.append(channel2)

        alert = alerts.create(
            name,
            alerter,
            sample_query,
            notification_channels=[channel1],
        )
        retrieved_channel_ids = alert._msg.notification_channels.keys()
        assert set(retrieved_channel_ids) == {channel1.id}

        alert.add_notification_channels([channel2])
        alert._refresh_cache()
        retrieved_channel_ids = alert._msg.notification_channels.keys()
        assert set(retrieved_channel_ids) == {channel1.id, channel2.id}
コード例 #3
0
ファイル: test_entities.py プロジェクト: jchristov/modeldb
    def test_creation_datetime(self, client, strs, created_entities):
        strs = iter(strs)
        notification_channels = client.operations.notification_channels

        created_at = time_utils.now() - datetime.timedelta(weeks=1)
        updated_at = time_utils.now() - datetime.timedelta(days=1)
        created_at_millis = time_utils.epoch_millis(created_at)
        updated_at_millis = time_utils.epoch_millis(updated_at)

        # as datetime
        channel = notification_channels.create(
            next(strs),
            SlackNotificationChannel(next(strs)),
            created_at=created_at,
            updated_at=updated_at,
        )
        created_entities.append(channel)
        assert channel._msg.created_at_millis == created_at_millis
        assert channel._msg.updated_at_millis == updated_at_millis

        # as millis
        channel = notification_channels.create(
            next(strs),
            SlackNotificationChannel(next(strs)),
            created_at=created_at_millis,
            updated_at=updated_at_millis,
        )
        created_entities.append(channel)
        assert channel._msg.created_at_millis == created_at_millis
        assert channel._msg.updated_at_millis == updated_at_millis
コード例 #4
0
ファイル: test_entities.py プロジェクト: jchristov/modeldb
    def test_get_or_create_workspace(self, client, strs, organization,
                                     created_entities):
        strs = iter(strs)
        workspace = organization.name
        notification_channels = client.operations.notification_channels

        created_channel = notification_channels.get_or_create(
            name=next(strs),
            channel=SlackNotificationChannel(next(strs)),
            workspace=workspace,
        )
        created_entities.append(created_channel)
        assert created_channel.workspace == workspace

        # extraneous params
        with pytest.warns(UserWarning):
            retrieved_channel = notification_channels.get_or_create(
                name=created_channel.name,
                channel=SlackNotificationChannel(next(strs)),
                workspace=workspace,
            )
        assert retrieved_channel.id == created_channel.id

        # name only
        with pytest.warns(None) as record:
            retrieved_channel = notification_channels.get_or_create(
                name=created_channel.name,
                workspace=workspace,
            )
        assert not record  # no warning of extraneous params
        assert retrieved_channel.id == created_channel.id

        # ID only
        with pytest.warns(None) as record:
            retrieved_channel = notification_channels.get_or_create(
                id=created_channel.id, )
        assert not record  # no warning of extraneous params
        assert retrieved_channel.id == created_channel.id

        new_channel = notification_channels.get_or_create(
            next(strs),
            SlackNotificationChannel(next(strs)),
            workspace=workspace,
        )
        created_entities.append(new_channel)
        assert new_channel.id != created_channel.id
コード例 #5
0
ファイル: test_entities.py プロジェクト: jchristov/modeldb
    def test_repr(self, client, strs, created_entities):
        """__repr__() does not raise exceptions"""
        notification_channels = client.operations.notification_channels
        name, webhook_url = strs[:2]
        slack_channel = SlackNotificationChannel(webhook_url)

        created_channel = notification_channels.create(name, slack_channel)
        created_entities.append(created_channel)
        assert repr(created_channel)

        retrieved_channel = notification_channels.get(id=created_channel.id)
        assert repr(retrieved_channel)
コード例 #6
0
ファイル: test_entities.py プロジェクト: jchristov/modeldb
    def test_crud(self, client, strs):
        notification_channels = client.operations.notification_channels
        name, webhook_url = strs[:2]
        slack_channel = SlackNotificationChannel(webhook_url)

        created_channel = notification_channels.create(name, slack_channel)
        assert isinstance(created_channel, _entities.NotificationChannel)
        assert created_channel._msg.type == slack_channel._TYPE

        retrieved_channel = notification_channels.get(id=created_channel.id)
        assert isinstance(retrieved_channel, _entities.NotificationChannel)
        assert retrieved_channel._msg.type == slack_channel._TYPE

        listed_channels = notification_channels.list()
        assert created_channel.id in map(lambda c: c.id, listed_channels)

        assert notification_channels.delete([created_channel])
コード例 #7
0
 def test_repr(self, webhook_url):
     """__repr__() does not raise exceptions"""
     slack_channel = SlackNotificationChannel(webhook_url)
     assert repr(slack_channel)
コード例 #8
0
    def test_create(self, webhook_url):
        slack_channel = SlackNotificationChannel(webhook_url)
        assert slack_channel._url == webhook_url

        msg = _AlertService.NotificationChannelSlackWebhook(url=webhook_url, )
        assert slack_channel._as_proto() == msg