FieldsTests¶
TestTemplates¶
Includes the test scenarios to check the field extractions of an Add-on.
FieldTestTemplates
¶
Bases: object
Test templates to test the knowledge objects of an App
Source code in pytest_splunk_addon/fields_tests/test_templates.py
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 |
|
test_datamodels(splunk_search_util, splunk_ingest_data, splunk_setup, splunk_searchtime_fields_datamodels, record_property, caplog)
¶
Test case to check if correct datamodels are assigned to the event.
This test case checks if tags assigned to the event match assigned datamodel and also checks if there is no additional wrongly assigned datamodel.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
splunk_search_util |
SearchUtil
|
object that helps to search on Splunk. |
required |
splunk_ingest_data |
fixture
|
Ensure data was ingested before running test |
required |
splunk_setup |
fixture
|
Ensure that test environment was set up before running test |
required |
splunk_searchtime_fields_datamodels |
fixture
|
pytest parameters to test. |
required |
record_property |
fixture
|
Document facts of test cases to provide more info in the test failure reports. |
required |
caplog |
fixture
|
fixture to capture logs. |
required |
Source code in pytest_splunk_addon/fields_tests/test_templates.py
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 |
|
test_eventtype(splunk_search_util, splunk_ingest_data, splunk_setup, splunk_searchtime_fields_eventtypes, record_property, caplog)
¶
Tests if all eventtypes in eventtypes.conf are generated in Splunk.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
splunk_search_util |
SearchUtil
|
object that helps to search on Splunk. |
required |
splunk_ingest_data |
fixture
|
Ensure data was ingested before running test |
required |
splunk_setup |
fixture
|
Ensure that test environment was set up before running test |
required |
splunk_searchtime_fields_eventtypes |
fixture
|
Fixture containing list of eventtypes |
required |
record_property |
fixture
|
Document facts of test cases to provide more info in the test failure reports. |
required |
caplog |
fixture
|
Access and control log capturing |
required |
Returns:
Type | Description |
---|---|
Asserts whether test case passes or fails. |
Source code in pytest_splunk_addon/fields_tests/test_templates.py
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 |
|
test_props_fields(splunk_search_util, splunk_ingest_data, splunk_setup, splunk_searchtime_fields_positive, record_property)
¶
This test case checks that a field value has the expected values.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
splunk_search_util |
SearchUtil
|
Object that helps to search on Splunk. |
required |
splunk_ingest_data |
fixture
|
Ensure data was ingested before running test |
required |
splunk_setup |
fixture
|
Ensure that test environment was set up before running test |
required |
splunk_searchtime_fields_positive |
fixture
|
fields data of the event to be tested |
required |
record_property |
fixture
|
Document facts of test cases to provide more info in the test failure reports. |
required |
Source code in pytest_splunk_addon/fields_tests/test_templates.py
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
|
test_props_fields_no_dash_not_empty(splunk_search_util, splunk_ingest_data, splunk_setup, splunk_searchtime_fields_negative, record_property)
¶
This test case checks negative scenario for the field value.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
splunk_search_util |
SearchUtil
|
Object that helps to search on Splunk. |
required |
splunk_ingest_data |
fixture
|
Ensure data was ingested before running test |
required |
splunk_setup |
fixture
|
Ensure that test environment was set up before running test |
required |
splunk_searchtime_fields_negative |
fixture
|
fields data of the event to be tested |
required |
record_property |
fixture
|
Document facts of test cases to provide more info in the test failure reports. |
required |
Source code in pytest_splunk_addon/fields_tests/test_templates.py
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 |
|
test_requirements_fields(splunk_search_util, splunk_ingest_data, splunk_setup, splunk_searchtime_fields_requirements, record_property)
¶
This test case checks that a field value has the expected values.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
splunk_search_util |
SearchUtil
|
Object that helps to search on Splunk. |
required |
splunk_ingest_data |
fixture
|
Ensure data was ingested before running test |
required |
splunk_setup |
fixture
|
Ensure that test environment was set up before running test |
required |
splunk_searchtime_fields_requirements |
fixture
|
fields data of the event to be tested |
required |
record_property |
fixture
|
Document facts of test cases to provide more info in the test failure reports. |
required |
Source code in pytest_splunk_addon/fields_tests/test_templates.py
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 |
|
test_savedsearches(splunk_search_util, splunk_ingest_data, splunk_setup, splunk_searchtime_fields_savedsearches, record_property, caplog)
¶
Tests if all savedsearches in savedsearches.conf are being executed properly to generate proper results.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
splunk_search_util |
SearchUtil
|
object that helps to search on Splunk. |
required |
splunk_ingest_data |
fixture
|
Ensure data was ingested before running test |
required |
splunk_setup |
fixture
|
Ensure that test environment was set up before running test |
required |
splunk_searchtime_fields_savedsearches |
fixture
|
Fixture containing list of savedsearches |
required |
record_property |
fixture
|
Document facts of test cases to provide more info in the test failure reports. |
required |
caplog |
fixture
|
Access and control log capturing |
required |
Returns:
Type | Description |
---|---|
Asserts whether test case passes or fails. |
Source code in pytest_splunk_addon/fields_tests/test_templates.py
530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 |
|
test_splunk_internal_errors(splunk_search_util, ignore_internal_errors, record_property, caplog)
¶
This test case checks that there are not any unexpected internal errors
Parameters:
Name | Type | Description | Default |
---|---|---|---|
splunk_search_util |
SearchUtil
|
Object that helps to search on Splunk. |
required |
ignore_internal_errors |
fixture
|
common list of errors to be ignored |
required |
record_property |
fixture
|
Document facts of test cases to provide more info in the test failure reports. |
required |
caplog |
fixture
|
fixture to capture logs. |
required |
Source code in pytest_splunk_addon/fields_tests/test_templates.py
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
|
test_tags(splunk_search_util, splunk_ingest_data, splunk_setup, splunk_searchtime_fields_tags, record_property, caplog)
¶
Test case to check tags mentioned in tags.conf
This test case checks if a tag is assigned to the event if enabled, and also checks that a tag is not assigned to the event if disabled.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
splunk_search_util |
SearchUtil
|
object that helps to search on Splunk. |
required |
splunk_ingest_data |
fixture
|
Ensure data was ingested before running test |
required |
splunk_setup |
fixture
|
Ensure that test environment was set up before running test |
required |
splunk_searchtime_fields_tags |
fixture
|
pytest parameters to test. |
required |
record_property |
fixture
|
Document facts of test cases to provide more info in the test failure reports. |
required |
caplog |
fixture
|
fixture to capture logs. |
required |
Source code in pytest_splunk_addon/fields_tests/test_templates.py
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 |
|
TestGenerator¶
Module include class to generate the test cases to test the knowledge objects of an Add-on.
FieldTestGenerator
¶
Bases: object
Generates test cases to test the knowledge objects of an Add-on.
- Provides the pytest parameters to the test templates.
- Supports field_bank: List of fields with patterns and expected values which should be tested for the Add-on.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
app_path |
str
|
Path of the app package |
required |
tokenized_events |
list
|
list of tokenized events |
required |
field_bank |
str
|
Path of the fields Json file |
None
|
Source code in pytest_splunk_addon/fields_tests/test_generator.py
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 |
|
generate_eventtype_tests()
¶
Generate test case for eventtypes
Yields:
Type | Description |
---|---|
pytest.params for the test templates |
Source code in pytest_splunk_addon/fields_tests/test_generator.py
201 202 203 204 205 206 207 208 209 210 211 212 |
|
generate_field_tests(is_positive)
¶
Generate test case for fields
Parameters:
Name | Type | Description | Default |
---|---|---|---|
is_positive |
bool
|
Test type to generate |
required |
Yields:
Type | Description |
---|---|
pytest.params for the test templates |
Source code in pytest_splunk_addon/fields_tests/test_generator.py
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
|
generate_requirements_datamodels_tests()
¶
Generate test case for datamodels
Yields:
Type | Description |
---|---|
pytest.params for the test templates |
Source code in pytest_splunk_addon/fields_tests/test_generator.py
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
|
generate_requirements_tests()
¶
Generate test cases for fields defined for datamodel This function generates tests previously covered by requirement tests
Yields:
Type | Description |
---|---|
pytest.params for the test templates |
Source code in pytest_splunk_addon/fields_tests/test_generator.py
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 |
|
generate_savedsearches_tests()
¶
Generate test case for savedsearches
Yields:
Type | Description |
---|---|
pytest.params for the test templates |
Source code in pytest_splunk_addon/fields_tests/test_generator.py
214 215 216 217 218 219 220 221 222 223 224 |
|
generate_tag_tests()
¶
Generate test case for tags
Yields:
Type | Description |
---|---|
pytest.params for the test templates |
Source code in pytest_splunk_addon/fields_tests/test_generator.py
143 144 145 146 147 148 149 150 151 152 153 |
|
generate_tests(fixture)
¶
Generate the test cases based on the fixture provided supported fixtures:
* splunk_searchtime_fields_positive
* splunk_searchtime_fields_negative
* splunk_searchtime_fields_tags
* splunk_searchtime_fields_eventtypes
* splunk_searchtime_fields_savedsearches
* splunk_searchtime_fields_requirements
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fixture |
str
|
fixture name |
required |
Source code in pytest_splunk_addon/fields_tests/test_generator.py
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
|
FieldBank¶
To enhance the test cases while verifying the field extractions.
FieldBank
¶
Bases: object
List of fields with patterns and expected
values which should be tested for the Add-on.
Steps to use:
-
Create a json file with the list of fields.
Example::
{ "stanza_name": [ # Key should be stanza_name { "name": "action", "condition": "| regex _raw=\"success\"" "validity": "action=if(action=\"unknown\", null(), action)" "expected_values": ["success", "failure"] "negative_values": ["", "-", "unknown"] } ] }
.. csv-table:: :header: Parameter, Description
condition, A filtering SPL command. validity, An EVAL statement. Filter out invalid value of a field expected_fields, List of expected_fields negative_fields, The list of values the field should not have
supported stanza_type:
1. source 2. sourcetype
-
Provide path of the json file with –field-bank=path parameter
Source code in pytest_splunk_addon/fields_tests/field_bank.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
|
init_field_bank_tests(field_bank_path)
classmethod
¶
Parse the field JSON file and return the list of fields
Parameters:
Name | Type | Description | Default |
---|---|---|---|
field_bank_path |
str
|
Path of the field JSON file |
required |
Yields:
Name | Type | Description |
---|---|---|
dict |
details of the fields including stanza and stanza_type |
Source code in pytest_splunk_addon/fields_tests/field_bank.py
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
|