From 724b36b7051c0d9190cbd8854ba5919904967c11 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 May 2024 07:22:11 +0200 Subject: Merging upstream version 115.11.0esr. Signed-off-by: Daniel Baumann --- xpcom/tests/gtest/TestINIParser.cpp | 60 +++++++++++++++++++++++++++++++++++++ xpcom/tests/gtest/moz.build | 1 + 2 files changed, 61 insertions(+) create mode 100644 xpcom/tests/gtest/TestINIParser.cpp (limited to 'xpcom/tests') diff --git a/xpcom/tests/gtest/TestINIParser.cpp b/xpcom/tests/gtest/TestINIParser.cpp new file mode 100644 index 0000000000..8c156f23dd --- /dev/null +++ b/xpcom/tests/gtest/TestINIParser.cpp @@ -0,0 +1,60 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "nsCOMPtr.h" +#include "gtest/gtest.h" +#include "mozilla/gtest/MozAssertions.h" + +#include "nsINIParser.h" + +TEST(INIParser, DeleteString) +{ + nsINIParser* parser = new nsINIParser(); + nsresult rv = parser->InitFromString( + "[sec]\r\ +key1=val1\r\ +key2=val2\r\ +key3=val3\r\ +key4=val4"_ns); + EXPECT_NS_SUCCEEDED(rv); + + rv = parser->DeleteString("sec", "key3"); + EXPECT_NS_SUCCEEDED(rv); + rv = parser->DeleteString("sec", "key4"); + EXPECT_NS_SUCCEEDED(rv); + rv = parser->DeleteString("sec", "key1"); + EXPECT_NS_SUCCEEDED(rv); + rv = parser->DeleteString("sec", "key2"); + EXPECT_NS_SUCCEEDED(rv); + + delete parser; +} + +TEST(INIParser, DeleteSection) +{ + nsINIParser* parser = new nsINIParser(); + nsresult rv = parser->InitFromString( + "[sec1]\r\ +key=val\r\ +\r\ +[sec2]\r\ +key=val\r\ +[sec3]\r\ +key=val\r\ +[sec4]\r\ +key=val"_ns); + EXPECT_NS_SUCCEEDED(rv); + + rv = parser->DeleteSection("sec3"); + EXPECT_NS_SUCCEEDED(rv); + rv = parser->DeleteSection("sec4"); + EXPECT_NS_SUCCEEDED(rv); + rv = parser->DeleteSection("sec1"); + EXPECT_NS_SUCCEEDED(rv); + rv = parser->DeleteSection("sec2"); + EXPECT_NS_SUCCEEDED(rv); + + delete parser; +} diff --git a/xpcom/tests/gtest/moz.build b/xpcom/tests/gtest/moz.build index 3347c56ba5..af33d34f38 100644 --- a/xpcom/tests/gtest/moz.build +++ b/xpcom/tests/gtest/moz.build @@ -25,6 +25,7 @@ UNIFIED_SOURCES += [ "TestGCPostBarriers.cpp", "TestID.cpp", "TestIDUtils.cpp", + "TestINIParser.cpp", "TestInputStreamLengthHelper.cpp", "TestJSHolderMap.cpp", "TestLogCommandLineHandler.cpp", -- cgit v1.2.3