-- This test script will verify the functions within skyweave/utils.lua package.path = './skyweave/?.lua;' .. package.path local utils = require("utils") describe("Skyweave Utility Functions Module", function() -- A nested 'describe' for the specific function we are testing. describe("parse_query_string", function() -- 'it' blocks contain the actual test cases. it("should correctly parse a single key-value pair", function() local query = "get_config=network_config" local expected = { get_config = "network_config" } assert.are.same(expected, utils.parse_query_string(query)) end) it("should handle multiple parameters correctly", function() local query = "ssid=MyWifi&encryption=psk2&channel=11" local expected = { ssid = "MyWifi", encryption = "psk2", channel = "11" } assert.are.same(expected, utils.parse_query_string(query)) end) it("should handle URL-encoded characters", function() local query = "ssid=My%20Awesome%20Wifi" local expected = { ssid = "My Awesome Wifi" } assert.are.same(expected, utils.parse_query_string(query)) end) it("should return an empty table for a nil or empty query string", function() assert.are.same({}, utils.parse_query_string("")) assert.are.same({}, utils.parse_query_string(nil)) end) end) describe("utils.parse_log_line", function() local utils = require('src.utils') -- Assume utils are in a source directory. local FAKE_HASH = "mocked_sha256_hash_value" -- Create a local 'months_map' as it is a dependency for the function. local months_map = { Jan = "01", Feb = "02", Mar = "03", Apr = "04", May = "05", Jun = "06", Jul = "07", Aug = "08", Sep = "09", Oct = "10", Nov = "11", Dec = "12" } -- Mock the calculate_sha256 function to ensure tests are deterministic and focused. utils.calculate_sha256 = function(input) return FAKE_HASH end -- Test Case: Standard Syslog Entry with PID -- Verifies the correct parsing of a well-formed daemon log entry. it("should correctly parse a standard daemon log line with a PID", function() -- Input data for this sacred test. local raw_line = "Mon May 19 13:49:02 2025 daemon.info dnsmasq[27917]: using local addresses only for domain lan" -- Invocation of the function under scrutiny. local entry = utils.parse_log_line(raw_line) -- The Litany of Assertions: Verifying the Omnissiah's truth. assert.are.equal("Mon May 19 13:49:02 2025", entry.timestamp_str) assert.are.equal("2025-05-19T13:49:02", entry.datetime_obj) assert.are.equal("daemon.info", entry.facility_level) assert.are.equal("dnsmasq", entry.process_name) assert.are.equal(27917, entry.pid) assert.are.equal("using local addresses only for domain lan", entry.message) assert.is_nil(entry.kernel_timestamp) assert.is_nil(entry.parse_error) assert.are.equal(FAKE_HASH, entry.log_hash) end) -- Test Case: Syslog Entry without PID -- Ensures the parser handles log lines where the process tag does not include a PID. it("should correctly parse a standard daemon log line without a PID", function() local raw_line = "Sat Jun 7 09:18:39 2025 daemon.notice netifd: wan (17408): udhcpc: lease of 192.168.18.70 obtained, lease time 7200" local entry = utils.parse_log_line(raw_line) assert.are.equal("Sat Jun 7 09:18:39 2025", entry.timestamp_str) assert.are.equal("2025-06-07T09:18:39", entry.datetime_obj) assert.are.equal("daemon.notice", entry.facility_level) assert.are.equal("netifd", entry.process_name) assert.is_nil(entry.pid) assert.are.equal("wan (17408): udhcpc: lease of 192.168.18.70 obtained, lease time 7200", entry.message) assert.is_nil(entry.kernel_timestamp) assert.is_nil(entry.parse_error) assert.are.equal(FAKE_HASH, entry.log_hash) end) -- Test Case: Syslog Entry with Irregular Spacing -- Validates the regex's resilience to variable whitespace, a common imperfection in log data. it("should handle irregular spacing in the timestamp", function() local raw_line = "Sat Jun 7 22:15:17 2025 authpriv.notice dropbear[23131]: Pubkey auth succeeded for 'root' with key md5 12:1d:04:66:d5:e7:89:24:2e:f9:77:8e:86:56:68:69 from 192.168.10.250:54622" local entry = utils.parse_log_line(raw_line) assert.are.equal("Sat Jun 7 22:15:17 2025", entry.timestamp_str) assert.are.equal("2025-06-07T22:15:17", entry.datetime_obj) assert.are.equal("authpriv.notice", entry.facility_level) assert.are.equal("dropbear", entry.process_name) assert.are.equal(23131, entry.pid) assert.are.equal("Pubkey auth succeeded for 'root' with key md5 12:1d:04:66:d5:e7:89:24:2e:f9:77:8e:86:56:68:69 from 192.168.10.250:54622", entry.message) assert.is_nil(entry.parse_error) assert.are.equal(FAKE_HASH, entry.log_hash) end) -- Test Case: Kernel Log Entry -- Verifies correct parsing of kernel-specific log formats. it("should correctly parse a kernel log line", function() local raw_line = "[ 123.456789] This is a kernel message" local entry = utils.parse_log_line(raw_line) assert.are.equal("", entry.timestamp_str) assert.is_nil(entry.datetime_obj) assert.are.equal("kernel.None", entry.facility_level) assert.are.equal("kernel", entry.process_name) assert.is_nil(entry.pid) assert.are.equal("This is a kernel message", entry.message) assert.are.equal(123.456789, entry.kernel_timestamp) assert.is_nil(entry.parse_error) assert.are.equal(FAKE_HASH, entry.log_hash) end) -- Test Case: Unparseable Log Entry -- Confirms that the function gracefully handles and flags unknown log formats. it("should handle an unknown log format without failing", function() local raw_line = "This is just some random text that does not match any format." local entry = utils.parse_log_line(raw_line) assert.are.equal("", entry.timestamp_str) assert.is_nil(entry.datetime_obj) assert.are.equal("", entry.facility_level) assert.is_nil(entry.process_name) assert.is_nil(entry.pid) assert.are.equal(raw_line, entry.message) assert.are.equal("Unknown log format", entry.parse_error) assert.are.equal(FAKE_HASH, entry.log_hash) end) end) -- more 'describe' blocks here to test other functions in utils.lua end)