code stringlengths 66 870k | docstring stringlengths 19 26.7k | func_name stringlengths 1 138 | language stringclasses 1
value | repo stringlengths 7 68 | path stringlengths 5 324 | url stringlengths 46 389 | license stringclasses 7
values |
|---|---|---|---|---|---|---|---|
def test_resultset_error(self):
"""Test returning error in TestResultSet object."""
with self.assertRaises(InfluxDBClientError):
ResultSet({
"series": [],
"error": "Big error, many problems."
}) | Test returning error in TestResultSet object. | test_resultset_error | python | influxdata/influxdb-python | influxdb/tests/resultset_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/resultset_test.py | MIT |
def test_make_lines(self):
"""Test make new lines in TestLineProtocol object."""
data = {
"tags": {
"empty_tag": "",
"none_tag": None,
"backslash_tag": "C:\\",
"integer_tag": 2,
"string_tag": "hello"
... | Test make new lines in TestLineProtocol object. | test_make_lines | python | influxdata/influxdb-python | influxdb/tests/test_line_protocol.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/test_line_protocol.py | MIT |
def test_string_val_newline(self):
"""Test string value with newline in TestLineProtocol object."""
data = {
"points": [
{
"measurement": "m1",
"fields": {
"multi_line": "line1\nline1\nline3"
... | Test string value with newline in TestLineProtocol object. | test_string_val_newline | python | influxdata/influxdb-python | influxdb/tests/test_line_protocol.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/test_line_protocol.py | MIT |
def test_make_lines_empty_field_string(self):
"""Test make lines with an empty string field."""
data = {
"points": [
{
"measurement": "test",
"fields": {
"string": "",
}
}
... | Test make lines with an empty string field. | test_make_lines_empty_field_string | python | influxdata/influxdb-python | influxdb/tests/test_line_protocol.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/test_line_protocol.py | MIT |
def test_tag_value_newline(self):
"""Test make lines with tag value contains newline."""
data = {
"tags": {
"t1": "line1\nline2"
},
"points": [
{
"measurement": "test",
"fields": {
... | Test make lines with tag value contains newline. | test_tag_value_newline | python | influxdata/influxdb-python | influxdb/tests/test_line_protocol.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/test_line_protocol.py | MIT |
def test_float_with_long_decimal_fraction(self):
"""Ensure precision is preserved when casting floats into strings."""
data = {
"points": [
{
"measurement": "test",
"fields": {
"float_val": 1.0000000000000009,
... | Ensure precision is preserved when casting floats into strings. | test_float_with_long_decimal_fraction | python | influxdata/influxdb-python | influxdb/tests/test_line_protocol.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/test_line_protocol.py | MIT |
def test_float_with_long_decimal_fraction_as_type_decimal(self):
"""Ensure precision is preserved when casting Decimal into strings."""
data = {
"points": [
{
"measurement": "test",
"fields": {
"float_val": Decim... | Ensure precision is preserved when casting Decimal into strings. | test_float_with_long_decimal_fraction_as_type_decimal | python | influxdata/influxdb-python | influxdb/tests/test_line_protocol.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/test_line_protocol.py | MIT |
def test_scheme(self):
"""Test database scheme for TestInfluxDBClient object."""
cli = InfluxDBClient('host', 8086, 'username', 'password', 'database')
self.assertEqual(cli._baseurl, 'http://host:8086')
cli = InfluxDBClient(
'host', 8086, 'username', 'password', 'database', ... | Test database scheme for TestInfluxDBClient object. | test_scheme | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_dsn(self):
"""Test datasource name for TestInfluxDBClient object."""
cli = InfluxDBClient.from_dsn(self.dsn_string)
self.assertEqual('http://host:1886', cli._baseurl)
self.assertEqual('uSr', cli._username)
self.assertEqual('pWd', cli._password)
self.assertEqual('... | Test datasource name for TestInfluxDBClient object. | test_dsn | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_switch_database(self):
"""Test switch database for TestInfluxDBClient object."""
cli = InfluxDBClient('host', 8086, 'username', 'password', 'database')
cli.switch_database('another_database')
self.assertEqual(cli._database, 'another_database') | Test switch database for TestInfluxDBClient object. | test_switch_database | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_switch_db_deprecated(self):
"""Test deprecated switch database for TestInfluxDBClient object."""
cli = InfluxDBClient('host', 8086, 'username', 'password', 'database')
cli.switch_db('another_database')
self.assertEqual(cli._database, 'another_database') | Test deprecated switch database for TestInfluxDBClient object. | test_switch_db_deprecated | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_switch_user(self):
"""Test switch user for TestInfluxDBClient object."""
cli = InfluxDBClient('host', 8086, 'username', 'password', 'database')
cli.switch_user('another_username', 'another_password')
self.assertEqual(cli._username, 'another_username')
self.assertEqual(cl... | Test switch user for TestInfluxDBClient object. | test_switch_user | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_write(self):
"""Test write to database for TestInfluxDBClient object."""
with requests_mock.Mocker() as m:
m.register_uri(
requests_mock.POST,
"http://localhost:8086/write"
)
cli = InfluxDBClient(database='db')
cli.... | Test write to database for TestInfluxDBClient object. | test_write | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_write_points_string(self):
"""Test write string points for TestInfluxDBClient object."""
with requests_mock.Mocker() as m:
m.register_uri(
requests_mock.POST,
"http://localhost:8086/db/db/series"
)
cli = InfluxDBClient(databas... | Test write string points for TestInfluxDBClient object. | test_write_points_string | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_write_points_batch(self):
"""Test write batch points for TestInfluxDBClient object."""
with requests_mock.Mocker() as m:
m.register_uri(requests_mock.POST,
"http://localhost:8086/db/db/series")
cli = InfluxDBClient('localhost', 8086,
... | Test write batch points for TestInfluxDBClient object. | test_write_points_batch | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_write_points_batch_invalid_size(self):
"""Test write batch points invalid size for TestInfluxDBClient."""
with requests_mock.Mocker() as m:
m.register_uri(requests_mock.POST,
"http://localhost:8086/db/db/series")
cli = InfluxDBClient('localhost... | Test write batch points invalid size for TestInfluxDBClient. | test_write_points_batch_invalid_size | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_write_points_batch_multiple_series(self):
"""Test write points batch multiple series."""
dummy_points = [
{"points": [["1", 1, 1.0], ["2", 2, 2.0], ["3", 3, 3.0],
["4", 4, 4.0], ["5", 5, 5.0]],
"name": "foo",
"columns": ["val1", "val... | Test write points batch multiple series. | test_write_points_batch_multiple_series | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_write_points_fails(self):
"""Test failed write points for TestInfluxDBClient object."""
with _mocked_session('post', 500):
cli = InfluxDBClient('host', 8086, 'username', 'password', 'db')
cli.write_points([]) | Test failed write points for TestInfluxDBClient object. | test_write_points_fails | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_write_points_bad_precision(self):
"""Test write points with bad precision."""
cli = InfluxDBClient()
with self.assertRaisesRegexp(
Exception,
"Invalid time precision is given. \(use 's', 'm', 'ms' or 'u'\)"
):
cli.write_points(
... | Test write points with bad precision. | test_write_points_bad_precision | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_write_points_with_precision_fails(self):
"""Test write points where precision fails."""
with _mocked_session('post', 500):
cli = InfluxDBClient('host', 8086, 'username', 'password', 'db')
cli.write_points_with_precision([]) | Test write points where precision fails. | test_write_points_with_precision_fails | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_delete_points(self):
"""Test delete points for TestInfluxDBClient object."""
with _mocked_session('delete', 204) as mocked:
cli = InfluxDBClient('host', 8086, 'username', 'password', 'db')
self.assertTrue(cli.delete_points("foo"))
self.assertEqual(len(mocked... | Test delete points for TestInfluxDBClient object. | test_delete_points | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_delete_points_with_wrong_name(self):
"""Test delete points with wrong name."""
with _mocked_session('delete', 400):
cli = InfluxDBClient('host', 8086, 'username', 'password', 'db')
cli.delete_points("nonexist") | Test delete points with wrong name. | test_delete_points_with_wrong_name | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_query_chunked_unicode(self):
"""Test unicode chunked query for TestInfluxDBClient object."""
cli = InfluxDBClient(database='db')
example_object = {
'points': [
[1415206212980, 10001, u('unicode-\xcf\x89')],
[1415197271586, 10001, u('more-unico... | Test unicode chunked query for TestInfluxDBClient object. | test_query_chunked_unicode | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_query_bad_precision(self):
"""Test query with bad precision for TestInfluxDBClient."""
cli = InfluxDBClient()
with self.assertRaisesRegexp(
Exception,
"Invalid time precision is given. \(use 's', 'm', 'ms' or 'u'\)"
):
cli.query('select column... | Test query with bad precision for TestInfluxDBClient. | test_query_bad_precision | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_create_database_fails(self):
"""Test failed create database for TestInfluxDBClient."""
with _mocked_session('post', 401):
cli = InfluxDBClient('host', 8086, 'username', 'password', 'db')
cli.create_database('new_db') | Test failed create database for TestInfluxDBClient. | test_create_database_fails | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_delete_database_fails(self):
"""Test failed delete database for TestInfluxDBClient."""
with _mocked_session('delete', 401):
cli = InfluxDBClient('host', 8086, 'username', 'password', 'db')
cli.delete_database('old_db') | Test failed delete database for TestInfluxDBClient. | test_delete_database_fails | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_get_list_database(self):
"""Test get list of databases for TestInfluxDBClient."""
data = [
{"name": "a_db"}
]
with _mocked_session('get', 200, data):
cli = InfluxDBClient('host', 8086, 'username', 'password')
self.assertEqual(len(cli.get_list_... | Test get list of databases for TestInfluxDBClient. | test_get_list_database | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_get_list_database_fails(self):
"""Test failed get list of databases for TestInfluxDBClient."""
with _mocked_session('get', 401):
cli = InfluxDBClient('host', 8086, 'username', 'password')
cli.get_list_database() | Test failed get list of databases for TestInfluxDBClient. | test_get_list_database_fails | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_get_database_list_deprecated(self):
"""Test deprecated get database list for TestInfluxDBClient."""
data = [
{"name": "a_db"}
]
with _mocked_session('get', 200, data):
cli = InfluxDBClient('host', 8086, 'username', 'password')
self.assertEqual... | Test deprecated get database list for TestInfluxDBClient. | test_get_database_list_deprecated | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_delete_series_fails(self):
"""Test failed delete series for TestInfluxDBClient."""
with _mocked_session('delete', 401):
cli = InfluxDBClient('host', 8086, 'username', 'password', 'db')
cli.delete_series('old_series') | Test failed delete series for TestInfluxDBClient. | test_delete_series_fails | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_get_series_list(self):
"""Test get list of series for TestInfluxDBClient."""
cli = InfluxDBClient(database='db')
with requests_mock.Mocker() as m:
example_response = \
'[{"name":"list_series_result","columns":' \
'["time","name"],"points":[[0... | Test get list of series for TestInfluxDBClient. | test_get_series_list | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_get_continuous_queries(self):
"""Test get continuous queries for TestInfluxDBClient."""
cli = InfluxDBClient(database='db')
with requests_mock.Mocker() as m:
# Tip: put this in a json linter!
example_response = '[ { "name": "continuous queries", "columns"' \
... | Test get continuous queries for TestInfluxDBClient. | test_get_continuous_queries | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_add_cluster_admin(self):
"""Test add cluster admin for TestInfluxDBClient."""
with requests_mock.Mocker() as m:
m.register_uri(
requests_mock.POST,
"http://localhost:8086/cluster_admins"
)
cli = InfluxDBClient(database='db')
... | Test add cluster admin for TestInfluxDBClient. | test_add_cluster_admin | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_update_cluster_admin_password(self):
"""Test update cluster admin pass for TestInfluxDBClient."""
with requests_mock.Mocker() as m:
m.register_uri(
requests_mock.POST,
"http://localhost:8086/cluster_admins/paul"
)
cli = Influx... | Test update cluster admin pass for TestInfluxDBClient. | test_update_cluster_admin_password | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_delete_cluster_admin(self):
"""Test delete cluster admin for TestInfluxDBClient."""
with requests_mock.Mocker() as m:
m.register_uri(
requests_mock.DELETE,
"http://localhost:8086/cluster_admins/paul",
status_code=200,
)
... | Test delete cluster admin for TestInfluxDBClient. | test_delete_cluster_admin | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_alter_database_admin(self):
"""Test alter database admin for TestInfluxDBClient."""
with requests_mock.Mocker() as m:
m.register_uri(
requests_mock.POST,
"http://localhost:8086/db/db/users/paul"
)
cli = InfluxDBClient(database... | Test alter database admin for TestInfluxDBClient. | test_alter_database_admin | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_get_database_users(self):
"""Test get database users for TestInfluxDBClient."""
cli = InfluxDBClient('localhost', 8086, 'username', 'password', 'db')
example_response = \
'[{"name":"paul","isAdmin":false,"writeTo":".*","readFrom":".*"},'\
'{"name":"bobby","isAdm... | Test get database users for TestInfluxDBClient. | test_get_database_users | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_add_database_user(self):
"""Test add database user for TestInfluxDBClient."""
with requests_mock.Mocker() as m:
m.register_uri(
requests_mock.POST,
"http://localhost:8086/db/db/users"
)
cli = InfluxDBClient(database='db')
... | Test add database user for TestInfluxDBClient. | test_add_database_user | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_add_database_user_bad_permissions(self):
"""Test add database user with bad perms for TestInfluxDBClient."""
cli = InfluxDBClient()
with self.assertRaisesRegexp(
Exception,
"'permissions' must be \(readFrom, writeTo\) tuple"
):
cli.ad... | Test add database user with bad perms for TestInfluxDBClient. | test_add_database_user_bad_permissions | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_alter_database_user_password(self):
"""Test alter database user pass for TestInfluxDBClient."""
with requests_mock.Mocker() as m:
m.register_uri(
requests_mock.POST,
"http://localhost:8086/db/db/users/paul"
)
cli = InfluxDBCli... | Test alter database user pass for TestInfluxDBClient. | test_alter_database_user_password | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_alter_database_user_permissions(self):
"""Test alter database user perms for TestInfluxDBClient."""
with requests_mock.Mocker() as m:
m.register_uri(
requests_mock.POST,
"http://localhost:8086/db/db/users/paul"
)
cli = InfluxD... | Test alter database user perms for TestInfluxDBClient. | test_alter_database_user_permissions | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_alter_database_user_password_and_permissions(self):
"""Test alter database user pass and perms for TestInfluxDBClient."""
with requests_mock.Mocker() as m:
m.register_uri(
requests_mock.POST,
"http://localhost:8086/db/db/users/paul"
)
... | Test alter database user pass and perms for TestInfluxDBClient. | test_alter_database_user_password_and_permissions | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_update_database_user_password_current_user(self):
"""Test update database user pass for TestInfluxDBClient."""
cli = InfluxDBClient(
username='root',
password='hello',
database='database'
)
with requests_mock.Mocker() as m:
m.regis... | Test update database user pass for TestInfluxDBClient. | test_update_database_user_password_current_user | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_delete_database_user(self):
"""Test delete database user for TestInfluxDBClient."""
with requests_mock.Mocker() as m:
m.register_uri(
requests_mock.DELETE,
"http://localhost:8086/db/db/users/paul"
)
cli = InfluxDBClient(databa... | Test delete database user for TestInfluxDBClient. | test_delete_database_user | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_request_retry_raises(self, mock_request):
"""Test that three connection errors will not be handled."""
class CustomMock(object):
"""Define CustomMock object."""
def __init__(self):
"""Initialize the object."""
self.i = 0
def ... | Test that three connection errors will not be handled. | test_request_retry_raises | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def connection_error(self, *args, **kwargs):
"""Test the connection error for CustomMock."""
self.i += 1
if self.i < 4:
raise requests.exceptions.ConnectionError
else:
r = requests.Response()
r.s... | Test the connection error for CustomMock. | connection_error | python | influxdata/influxdb-python | influxdb/tests/influxdb08/client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/client_test.py | MIT |
def test_write_points_from_dataframe_with_float_nan(self):
"""Test write points from dataframe with NaN float."""
now = pd.Timestamp('1970-01-01 00:00+00:00')
dataframe = pd.DataFrame(data=[[1, float("NaN"), 1.0], [2, 2, 2.0]],
index=[now, now + timedelta(hours=1... | Test write points from dataframe with NaN float. | test_write_points_from_dataframe_with_float_nan | python | influxdata/influxdb-python | influxdb/tests/influxdb08/dataframe_client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/dataframe_client_test.py | MIT |
def test_write_points_from_dataframe_in_batches(self):
"""Test write points from dataframe in batches."""
now = pd.Timestamp('1970-01-01 00:00+00:00')
dataframe = pd.DataFrame(data=[["1", 1, 1.0], ["2", 2, 2.0]],
index=[now, now + timedelta(hours=1)],
... | Test write points from dataframe in batches. | test_write_points_from_dataframe_in_batches | python | influxdata/influxdb-python | influxdb/tests/influxdb08/dataframe_client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/dataframe_client_test.py | MIT |
def test_write_points_from_dataframe_with_numeric_column_names(self):
"""Test write points from dataframe with numeric columns."""
now = pd.Timestamp('1970-01-01 00:00+00:00')
# df with numeric column names
dataframe = pd.DataFrame(data=[["1", 1, 1.0], ["2", 2, 2.0]],
... | Test write points from dataframe with numeric columns. | test_write_points_from_dataframe_with_numeric_column_names | python | influxdata/influxdb-python | influxdb/tests/influxdb08/dataframe_client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/dataframe_client_test.py | MIT |
def test_write_points_from_dataframe_with_period_index(self):
"""Test write points from dataframe with period index."""
dataframe = pd.DataFrame(data=[["1", 1, 1.0], ["2", 2, 2.0]],
index=[pd.Period('1970-01-01'),
pd.Period('1970-0... | Test write points from dataframe with period index. | test_write_points_from_dataframe_with_period_index | python | influxdata/influxdb-python | influxdb/tests/influxdb08/dataframe_client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/dataframe_client_test.py | MIT |
def test_write_points_from_dataframe_with_time_precision(self):
"""Test write points from dataframe with time precision."""
now = pd.Timestamp('1970-01-01 00:00+00:00')
dataframe = pd.DataFrame(data=[["1", 1, 1.0], ["2", 2, 2.0]],
index=[now, now + timedelta(hour... | Test write points from dataframe with time precision. | test_write_points_from_dataframe_with_time_precision | python | influxdata/influxdb-python | influxdb/tests/influxdb08/dataframe_client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/dataframe_client_test.py | MIT |
def test_write_points_from_dataframe_fails_without_time_index(self):
"""Test write points from dataframe that fails without time index."""
dataframe = pd.DataFrame(data=[["1", 1, 1.0], ["2", 2, 2.0]],
columns=["column_one", "column_two",
... | Test write points from dataframe that fails without time index. | test_write_points_from_dataframe_fails_without_time_index | python | influxdata/influxdb-python | influxdb/tests/influxdb08/dataframe_client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/dataframe_client_test.py | MIT |
def test_write_points_from_dataframe_fails_with_series(self):
"""Test failed write points from dataframe with series."""
now = pd.Timestamp('1970-01-01 00:00+00:00')
dataframe = pd.Series(data=[1.0, 2.0],
index=[now, now + timedelta(hours=1)])
with requests... | Test failed write points from dataframe with series. | test_write_points_from_dataframe_fails_with_series | python | influxdata/influxdb-python | influxdb/tests/influxdb08/dataframe_client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/dataframe_client_test.py | MIT |
def test_query_multiple_time_series(self):
"""Test query for multiple time series."""
data = [
{
"name": "series1",
"columns": ["time", "mean", "min", "max", "stddev"],
"points": [[0, 323048, 323048, 323048, 0]]
},
{
... | Test query for multiple time series. | test_query_multiple_time_series | python | influxdata/influxdb-python | influxdb/tests/influxdb08/dataframe_client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/dataframe_client_test.py | MIT |
def test_list_series(self):
"""Test list of series for dataframe object."""
response = [
{
'columns': ['time', 'name'],
'name': 'list_series_result',
'points': [[0, 'seriesA'], [0, 'seriesB']]
}
]
with _mocked_sessio... | Test list of series for dataframe object. | test_list_series | python | influxdata/influxdb-python | influxdb/tests/influxdb08/dataframe_client_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/dataframe_client_test.py | MIT |
def setUpClass(cls):
"""Set up an instance of the TestSerisHelper object."""
super(TestSeriesHelper, cls).setUpClass()
TestSeriesHelper.client = InfluxDBClient(
'host',
8086,
'username',
'password',
'database'
)
class ... | Set up an instance of the TestSerisHelper object. | setUpClass | python | influxdata/influxdb-python | influxdb/tests/influxdb08/helper_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/helper_test.py | MIT |
def test_auto_commit(self):
"""Test that write_points called after the right number of events."""
class AutoCommitTest(SeriesHelper):
"""Define an instance of SeriesHelper for AutoCommit test."""
class Meta:
"""Define metadata AutoCommitTest object."""
... | Test that write_points called after the right number of events. | test_auto_commit | python | influxdata/influxdb-python | influxdb/tests/influxdb08/helper_test.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/influxdb08/helper_test.py | MIT |
def test_query_fail_ignore_errors(self):
"""Test query failed but ignore errors."""
result = self.cli.query('select column_one from foo',
raise_errors=False)
self.assertEqual(result.error, 'database not found: db') | Test query failed but ignore errors. | test_query_fail_ignore_errors | python | influxdata/influxdb-python | influxdb/tests/server_tests/client_test_with_server.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/server_tests/client_test_with_server.py | MIT |
def test_create_user_blank_password(self):
"""Test create user with a blank pass."""
self.cli.create_user('test_user', '')
rsp = list(self.cli.query("SHOW USERS")['results'])
self.assertIn({'user': 'test_user', 'admin': False},
rsp) | Test create user with a blank pass. | test_create_user_blank_password | python | influxdata/influxdb-python | influxdb/tests/server_tests/client_test_with_server.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/server_tests/client_test_with_server.py | MIT |
def test_revoke_admin_privileges(self):
"""Test revoking admin privs, deprecated as of v0.9.0."""
self.cli.create_user('test', 'test', admin=True)
self.assertEqual([{'user': 'test', 'admin': True}],
self.cli.get_list_users())
self.cli.revoke_admin_privileges('tes... | Test revoking admin privs, deprecated as of v0.9.0. | test_revoke_admin_privileges | python | influxdata/influxdb-python | influxdb/tests/server_tests/client_test_with_server.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/server_tests/client_test_with_server.py | MIT |
def test_grant_privilege_invalid(self):
"""Test grant invalid privs to user."""
self.cli.create_user('test', 'test')
self.cli.create_database('testdb')
with self.assertRaises(InfluxDBClientError) as ctx:
self.cli.grant_privilege('', 'testdb', 'test')
self.assertEqual(... | Test grant invalid privs to user. | test_grant_privilege_invalid | python | influxdata/influxdb-python | influxdb/tests/server_tests/client_test_with_server.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/server_tests/client_test_with_server.py | MIT |
def test_revoke_privilege_invalid(self):
"""Test revoke invalid privs from user."""
self.cli.create_user('test', 'test')
self.cli.create_database('testdb')
with self.assertRaises(InfluxDBClientError) as ctx:
self.cli.revoke_privilege('', 'testdb', 'test')
self.assertE... | Test revoke invalid privs from user. | test_revoke_privilege_invalid | python | influxdata/influxdb-python | influxdb/tests/server_tests/client_test_with_server.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/server_tests/client_test_with_server.py | MIT |
def test_write_check_read(self):
"""Test write and check read of data to server."""
self.test_write()
time.sleep(1)
rsp = self.cli.query('SELECT * FROM cpu_load_short', database='db')
self.assertListEqual([{'value': 0.64, 'time': '2009-11-10T23:00:00Z',
... | Test write and check read of data to server. | test_write_check_read | python | influxdata/influxdb-python | influxdb/tests/server_tests/client_test_with_server.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/server_tests/client_test_with_server.py | MIT |
def test_write_points_check_read(self):
"""Test writing points and check read back."""
self.test_write_points()
time.sleep(1) # same as test_write_check_read()
rsp = self.cli.query('SELECT * FROM cpu_load_short')
self.assertEqual(
list(rsp),
[[
... | Test writing points and check read back. | test_write_points_check_read | python | influxdata/influxdb-python | influxdb/tests/server_tests/client_test_with_server.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/server_tests/client_test_with_server.py | MIT |
def test_write_points_check_read_DF(self):
"""Test write points and check back with dataframe."""
self.test_write_points_DF()
time.sleep(1) # same as test_write_check_read()
rsp = self.cliDF.query('SELECT * FROM cpu_load_short')
assert_frame_equal(
rsp['cpu_load_sho... | Test write points and check back with dataframe. | test_write_points_check_read_DF | python | influxdata/influxdb-python | influxdb/tests/server_tests/client_test_with_server.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/server_tests/client_test_with_server.py | MIT |
def test_write_multiple_points_different_series(self):
"""Test write multiple points to different series."""
self.assertIs(True, self.cli.write_points(dummy_points))
time.sleep(1)
rsp = self.cli.query('SELECT * FROM cpu_load_short')
lrsp = list(rsp)
self.assertEqual(
... | Test write multiple points to different series. | test_write_multiple_points_different_series | python | influxdata/influxdb-python | influxdb/tests/server_tests/client_test_with_server.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/server_tests/client_test_with_server.py | MIT |
def test_write_multiple_points_different_series_DF(self):
"""Test write multiple points using dataframe to different series."""
for i in range(2):
self.assertIs(
True, self.cliDF.write_points(
dummy_points_df[i]['dataframe'],
dummy_poin... | Test write multiple points using dataframe to different series. | test_write_multiple_points_different_series_DF | python | influxdata/influxdb-python | influxdb/tests/server_tests/client_test_with_server.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/server_tests/client_test_with_server.py | MIT |
def test_write_points_batch_generator(self):
"""Test writing points in a batch from a generator."""
dummy_points = [
{"measurement": "cpu_usage", "tags": {"unit": "percent"},
"time": "2009-11-10T23:00:00Z", "fields": {"value": 12.34}},
{"measurement": "network", "... | Test writing points in a batch from a generator. | test_write_points_batch_generator | python | influxdata/influxdb-python | influxdb/tests/server_tests/client_test_with_server.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/server_tests/client_test_with_server.py | MIT |
def test_query_chunked(self):
"""Test query for chunked response from server."""
cli = InfluxDBClient(database='db')
example_object = {
'points': [
[1415206250119, 40001, 667],
[1415206244555, 30001, 7],
[1415206228241, 20001, 788],
... | Test query for chunked response from server. | test_query_chunked | python | influxdata/influxdb-python | influxdb/tests/server_tests/client_test_with_server.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/server_tests/client_test_with_server.py | MIT |
def test_create_retention_policy_default(self):
"""Test create a new default retention policy."""
self.cli.create_retention_policy('somename', '1d', 1, default=True)
self.cli.create_retention_policy('another', '2d', 1, default=False)
rsp = self.cli.get_list_retention_policies()
... | Test create a new default retention policy. | test_create_retention_policy_default | python | influxdata/influxdb-python | influxdb/tests/server_tests/client_test_with_server.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/server_tests/client_test_with_server.py | MIT |
def test_create_retention_policy(self):
"""Test creating a new retention policy, not default."""
self.cli.create_retention_policy('somename', '1d', 1)
# NB: creating a retention policy without specifying
# shard group duration
# leads to a shard group duration of 1 hour
... | Test creating a new retention policy, not default. | test_create_retention_policy | python | influxdata/influxdb-python | influxdb/tests/server_tests/client_test_with_server.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/server_tests/client_test_with_server.py | MIT |
def test_alter_retention_policy(self):
"""Test alter a retention policy, not default."""
self.cli.create_retention_policy('somename', '1d', 1)
# Test alter duration
self.cli.alter_retention_policy('somename', 'db',
duration='4d',
... | Test alter a retention policy, not default. | test_alter_retention_policy | python | influxdata/influxdb-python | influxdb/tests/server_tests/client_test_with_server.py | https://github.com/influxdata/influxdb-python/blob/master/influxdb/tests/server_tests/client_test_with_server.py | MIT |
def extract_path_data_using_pen(self, font: hb.Font, char: str) -> GlyphPaths | None:
"""Extract glyph path data using the pen API."""
gid = font.get_nominal_glyph(ord(char))
if gid is None:
return None
container = []
font.draw_glyph(gid, self.draw_funcs, container)
... | Extract glyph path data using the pen API. | extract_path_data_using_pen | python | SerCeMan/fontogen | fonts.py | https://github.com/SerCeMan/fontogen/blob/master/fonts.py | MIT |
def scale_and_translate_path_data(self, pen_data: GlyphPaths, max_dim: int, min_y_min: int) -> GlyphPaths:
"""
Scale the path data to fit within the target range, round to integers,
and then translate it to make all coordinates non-negative.
"""
target_range = self.glyph_res
... |
Scale the path data to fit within the target range, round to integers,
and then translate it to make all coordinates non-negative.
| scale_and_translate_path_data | python | SerCeMan/fontogen | fonts.py | https://github.com/SerCeMan/fontogen/blob/master/fonts.py | MIT |
def top_k_top_p_filtering(logits: torch.Tensor, top_k=0, top_p=0.0, filter_value=-float('Inf')):
""" Filter a distribution of logits using top-k and/or nucleus (top-p) filtering
Args:
logits: logits distribution shape (vocabulary size)
top_k >0: keep only top k tokens with the highes... | Filter a distribution of logits using top-k and/or nucleus (top-p) filtering
Args:
logits: logits distribution shape (vocabulary size)
top_k >0: keep only top k tokens with the highest probability (top-k filtering).
top_p >0.0: keep the top tokens with cumulative probability... | top_k_top_p_filtering | python | SerCeMan/fontogen | sampler.py | https://github.com/SerCeMan/fontogen/blob/master/sampler.py | MIT |
def normalize(image):
"""Normalize input image channel-wise to zero mean and unit variance."""
image = image.transpose(2, 0, 1) # Switch to channel-first
mean, std = np.array(MEAN), np.array(STD)
image = (image - mean[:, None, None]) / std[:, None, None]
return image.transpose(1, 2, 0) | Normalize input image channel-wise to zero mean and unit variance. | normalize | python | google-research/augmix | augment_and_mix.py | https://github.com/google-research/augmix/blob/master/augment_and_mix.py | Apache-2.0 |
def augment_and_mix(image, severity=3, width=3, depth=-1, alpha=1.):
"""Perform AugMix augmentations and compute mixture.
Args:
image: Raw input image as float32 np.ndarray of shape (h, w, c)
severity: Severity of underlying augmentation operators (between 1 to 10).
width: Width of augmentation chain
... | Perform AugMix augmentations and compute mixture.
Args:
image: Raw input image as float32 np.ndarray of shape (h, w, c)
severity: Severity of underlying augmentation operators (between 1 to 10).
width: Width of augmentation chain
depth: Depth of augmentation chain. -1 enables stochastic depth uniform... | augment_and_mix | python | google-research/augmix | augment_and_mix.py | https://github.com/google-research/augmix/blob/master/augment_and_mix.py | Apache-2.0 |
def get_lr(step, total_steps, lr_max, lr_min):
"""Compute learning rate according to cosine annealing schedule."""
return lr_min + (lr_max - lr_min) * 0.5 * (1 +
np.cos(step / total_steps * np.pi)) | Compute learning rate according to cosine annealing schedule. | get_lr | python | google-research/augmix | cifar.py | https://github.com/google-research/augmix/blob/master/cifar.py | Apache-2.0 |
def aug(image, preprocess):
"""Perform AugMix augmentations and compute mixture.
Args:
image: PIL.Image input image
preprocess: Preprocessing function which should return a torch tensor.
Returns:
mixed: Augmented and mixed image.
"""
aug_list = augmentations.augmentations
if args.all_ops:
... | Perform AugMix augmentations and compute mixture.
Args:
image: PIL.Image input image
preprocess: Preprocessing function which should return a torch tensor.
Returns:
mixed: Augmented and mixed image.
| aug | python | google-research/augmix | cifar.py | https://github.com/google-research/augmix/blob/master/cifar.py | Apache-2.0 |
def test_c(net, test_data, base_path):
"""Evaluate network on given corrupted dataset."""
corruption_accs = []
for corruption in CORRUPTIONS:
# Reference to original data is mutated
test_data.data = np.load(base_path + corruption + '.npy')
test_data.targets = torch.LongTensor(np.load(base_path + 'labe... | Evaluate network on given corrupted dataset. | test_c | python | google-research/augmix | cifar.py | https://github.com/google-research/augmix/blob/master/cifar.py | Apache-2.0 |
def adjust_learning_rate(optimizer, epoch):
"""Sets the learning rate to the initial LR (linearly scaled to batch size) decayed by 10 every n / 3 epochs."""
b = args.batch_size / 256.
k = args.epochs // 3
if epoch < k:
m = 1
elif epoch < 2 * k:
m = 0.1
else:
m = 0.01
lr = args.learning_rate * ... | Sets the learning rate to the initial LR (linearly scaled to batch size) decayed by 10 every n / 3 epochs. | adjust_learning_rate | python | google-research/augmix | imagenet.py | https://github.com/google-research/augmix/blob/master/imagenet.py | Apache-2.0 |
def accuracy(output, target, topk=(1,)):
"""Computes the accuracy over the k top predictions for the specified values of k."""
with torch.no_grad():
maxk = max(topk)
batch_size = target.size(0)
_, pred = output.topk(maxk, 1, True, True)
pred = pred.t()
correct = pred.eq(target.view(1, -1).expan... | Computes the accuracy over the k top predictions for the specified values of k. | accuracy | python | google-research/augmix | imagenet.py | https://github.com/google-research/augmix/blob/master/imagenet.py | Apache-2.0 |
def compute_mce(corruption_accs):
"""Compute mCE (mean Corruption Error) normalized by AlexNet performance."""
mce = 0.
for i in range(len(CORRUPTIONS)):
avg_err = 1 - np.mean(corruption_accs[CORRUPTIONS[i]])
ce = 100 * avg_err / ALEXNET_ERR[i]
mce += ce / 15
return mce | Compute mCE (mean Corruption Error) normalized by AlexNet performance. | compute_mce | python | google-research/augmix | imagenet.py | https://github.com/google-research/augmix/blob/master/imagenet.py | Apache-2.0 |
def __init__(self, path='config.yml'):
"""Constructor that will return an ATCconfig object holding the project configuration
Keyword Arguments:
path {str} -- 'Path of the local configuration file' (default: {'config.yml'})
"""
self.config_local = path
self.c... | Constructor that will return an ATCconfig object holding the project configuration
Keyword Arguments:
path {str} -- 'Path of the local configuration file' (default: {'config.yml'})
| __init__ | python | atc-project/atomic-threat-coverage | scripts/atcutils.py | https://github.com/atc-project/atomic-threat-coverage/blob/master/scripts/atcutils.py | Apache-2.0 |
def config(self):
"""Get the whole configuration including local settings and additions.
This the configuation that is used by the application.
Returns:
config {dict} -- Dictionary object containing default settings, overriden by local settings if set.
"""
config_f... | Get the whole configuration including local settings and additions.
This the configuation that is used by the application.
Returns:
config {dict} -- Dictionary object containing default settings, overriden by local settings if set.
| config | python | atc-project/atomic-threat-coverage | scripts/atcutils.py | https://github.com/atc-project/atomic-threat-coverage/blob/master/scripts/atcutils.py | Apache-2.0 |
def set_config_local(self, path):
"""Set the local configration via file path.
This will override project defaults in the final configuration.
If no local configuration is found on the argument path, a warning will be shown, and only default config is used.
Arguments:
path {str} --... | Set the local configration via file path.
This will override project defaults in the final configuration.
If no local configuration is found on the argument path, a warning will be shown, and only default config is used.
Arguments:
path {str} -- Local config file location
| set_config_local | python | atc-project/atomic-threat-coverage | scripts/atcutils.py | https://github.com/atc-project/atomic-threat-coverage/blob/master/scripts/atcutils.py | Apache-2.0 |
def __read_yaml_file(self, path):
"""Open the yaml file and load it to the variable.
Return created list"""
with open(path) as f:
yaml_fields = yaml.load_all(f.read(), Loader=yaml.FullLoader)
buff_results = [x for x in yaml_fields]
if len(buff_results) > 1:
... | Open the yaml file and load it to the variable.
Return created list | __read_yaml_file | python | atc-project/atomic-threat-coverage | scripts/atcutils.py | https://github.com/atc-project/atomic-threat-coverage/blob/master/scripts/atcutils.py | Apache-2.0 |
def read_rule_file(path):
"""Open the file and load it to the variable. Return text"""
with open(path) as f:
rule_text = f.read()
return rule_text | Open the file and load it to the variable. Return text | read_rule_file | python | atc-project/atomic-threat-coverage | scripts/atcutils.py | https://github.com/atc-project/atomic-threat-coverage/blob/master/scripts/atcutils.py | Apache-2.0 |
def confluence_get_page_id(apipath, auth, space, title):
"""Get confluence page ID based on title and space"""
headers = {
"Accept": "application/json",
"Content-Type": "application/json"
}
url = apipath + "content"
space_page_url = url + '?spaceKey=' + ... | Get confluence page ID based on title and space | confluence_get_page_id | python | atc-project/atomic-threat-coverage | scripts/atcutils.py | https://github.com/atc-project/atomic-threat-coverage/blob/master/scripts/atcutils.py | Apache-2.0 |
def sigma_lgsrc_fields_to_names(logsource_dict):
"""Get sigma logsource dict and rename key/values into our model,
so we could use it for Data Needed calculation"""
if logsource_dict:
sigma_keys = [*sigma_mapping]
proper_logsource_dict = {}
for ke... | Get sigma logsource dict and rename key/values into our model,
so we could use it for Data Needed calculation | sigma_lgsrc_fields_to_names | python | atc-project/atomic-threat-coverage | scripts/atcutils.py | https://github.com/atc-project/atomic-threat-coverage/blob/master/scripts/atcutils.py | Apache-2.0 |
def check_for_event_ids_presence(detection_rule_obj):
"""check if this is event id based detection rule"""
if detection_rule_obj.get('detection'):
for _field in detection_rule_obj['detection']:
if _field in ["condition", "timeframe"]:
continue
... | check if this is event id based detection rule | check_for_event_ids_presence | python | atc-project/atomic-threat-coverage | scripts/atcutils.py | https://github.com/atc-project/atomic-threat-coverage/blob/master/scripts/atcutils.py | Apache-2.0 |
def check_for_enrichment_presence(detection_rule_obj):
"""check if this Data for this Detection Rule required any enrichments"""
if detection_rule_obj.get('enrichment'):
return True
else:
return False | check if this Data for this Detection Rule required any enrichments | check_for_enrichment_presence | python | atc-project/atomic-threat-coverage | scripts/atcutils.py | https://github.com/atc-project/atomic-threat-coverage/blob/master/scripts/atcutils.py | Apache-2.0 |
def get_logsource_of_the_document(detection_rule_obj):
"""get logsource for specific document (addition)"""
logsource = {}
_temp_list = []
logsource_optional_fields = ['category', 'product', 'service']
if 'logsource' in detection_rule_obj:
for val in logsource_optio... | get logsource for specific document (addition) | get_logsource_of_the_document | python | atc-project/atomic-threat-coverage | scripts/atcutils.py | https://github.com/atc-project/atomic-threat-coverage/blob/master/scripts/atcutils.py | Apache-2.0 |
def calculate_dn_for_eventid_based_dr(
dn_list, logsource, event_ids, has_command_line):
"""Meaning of the arguments:
dn_list - list of Data Needed objects (all dataneeded!)
logsource - dictionary of logsource fields of Detection Rule PER document
event_ids - list of event id... | Meaning of the arguments:
dn_list - list of Data Needed objects (all dataneeded!)
logsource - dictionary of logsource fields of Detection Rule PER document
event_ids - list of event ids per selection
logsource = {
"product": "windows",
"service": "sysmon"
... | calculate_dn_for_eventid_based_dr | python | atc-project/atomic-threat-coverage | scripts/atcutils.py | https://github.com/atc-project/atomic-threat-coverage/blob/master/scripts/atcutils.py | Apache-2.0 |
def calculate_dn_for_non_eventid_based_dr(
dn_list, detection_fields, logsource):
"""Meaning of the arguments:
dn_list - list of Data Needed objects (all dataneeded!)
detection_fields - dictionary of fields from detection section of
Detection Rule
l... | Meaning of the arguments:
dn_list - list of Data Needed objects (all dataneeded!)
detection_fields - dictionary of fields from detection section of
Detection Rule
logsource - dictionary of logsource fields of Detection Rule
detection_fields = {
"Com... | calculate_dn_for_non_eventid_based_dr | python | atc-project/atomic-threat-coverage | scripts/atcutils.py | https://github.com/atc-project/atomic-threat-coverage/blob/master/scripts/atcutils.py | Apache-2.0 |
def write_file(path, content, options="w+"):
"""Simple method for writing content to some file"""
with open(path, options) as file:
file.write(content)
return True | Simple method for writing content to some file | write_file | python | atc-project/atomic-threat-coverage | scripts/atcutils.py | https://github.com/atc-project/atomic-threat-coverage/blob/master/scripts/atcutils.py | Apache-2.0 |
def get_rules(self):
""" Retruns list of detection rules for customer
"""
dr_list_per_customer = [rules_by_title.get(dr_title)[0]
for dr_title in self.detection_rules]
return dr_list_per_customer | Retruns list of detection rules for customer
| get_rules | python | atc-project/atomic-threat-coverage | scripts/customer.py | https://github.com/atc-project/atomic-threat-coverage/blob/master/scripts/customer.py | Apache-2.0 |
def get_usecases(self):
""" Retruns list of use cases for customer
"""
uc_list_per_customer = [usecases_by_title.get(uc_title)[0]
for uc_title in self.use_cases]
return uc_list_per_customer | Retruns list of use cases for customer
| get_usecases | python | atc-project/atomic-threat-coverage | scripts/customer.py | https://github.com/atc-project/atomic-threat-coverage/blob/master/scripts/customer.py | Apache-2.0 |
def render_template(self, template_type):
"""Render template with data in it
template_type:
- "markdown"
- "confluence"
"""
if template_type not in ["markdown", "confluence"]:
raise Exception(
"Bad template_type. Available values: " +
... | Render template with data in it
template_type:
- "markdown"
- "confluence"
| render_template | python | atc-project/atomic-threat-coverage | scripts/customer.py | https://github.com/atc-project/atomic-threat-coverage/blob/master/scripts/customer.py | Apache-2.0 |
def save_markdown_file(self, atc_dir=ATCconfig.get('md_name_of_root_directory')):
"""Write content (md template filled with data) to a file"""
base = os.path.basename(self.yaml_file)
title = os.path.splitext(base)[0]
file_path = atc_dir + self.parent_title + "/" + \
title +... | Write content (md template filled with data) to a file | save_markdown_file | python | atc-project/atomic-threat-coverage | scripts/customer.py | https://github.com/atc-project/atomic-threat-coverage/blob/master/scripts/customer.py | Apache-2.0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.