scriptorium 0.0.3 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.lt3 +324 -0
- data/README.md +3155 -1
- data/assets/.DS_Store +0 -0
- data/assets/README.md +44 -0
- data/assets/back-icon.png +0 -0
- data/assets/icons/facebook.svg +1 -0
- data/assets/icons/github.svg +1 -0
- data/assets/icons/instagram.svg +1 -0
- data/assets/icons/reddit.svg +1 -0
- data/assets/icons/ui/.DS_Store +0 -0
- data/assets/icons/ui/back.png +0 -0
- data/assets/icons/ui/copy.png +0 -0
- data/assets/icons/ui/down.png +0 -0
- data/assets/icons/ui/end.png +0 -0
- data/assets/icons/ui/exit.png +0 -0
- data/assets/icons/ui/foo +10 -0
- data/assets/icons/ui/home.png +0 -0
- data/assets/icons/ui/left.png +0 -0
- data/assets/icons/ui/next.png +0 -0
- data/assets/icons/ui/right.png +0 -0
- data/assets/icons/ui/start.png +0 -0
- data/assets/icons/ui/up.png +0 -0
- data/assets/icons/x.svg +1 -0
- data/assets/icons/youtube.svg +1 -0
- data/assets/samples/placeholder.svg +9 -0
- data/assets/themes/standard/favicon.svg +6 -0
- data/bin/scriptorium +1511 -0
- data/doc/README.txt +6 -0
- data/doc/anti-amnesia/20250727-054000-scriptorium-overview.md +95 -0
- data/doc/anti-amnesia/20250727-060000-api-design-tui-planning.md +34 -0
- data/doc/anti-amnesia/20250727-061000-runeblog-tui-analysis.md +50 -0
- data/doc/anti-amnesia/20250727-123000-anti-amnesia-conventions.md +31 -0
- data/doc/anti-amnesia/20250727-154000-livetext-plugin-file-stats.md +73 -0
- data/doc/anti-amnesia/20250727-172600-cursor-rbenv-ruby-version-mystery.md +64 -0
- data/doc/anti-amnesia/20250727-172600-unified-minitest-framework.md +70 -0
- data/doc/anti-amnesia/20250727-172900-ai-cognitive-assessment-capabilities.md +40 -0
- data/doc/anti-amnesia/20250727-173000-widget-testing-achievement.md +110 -0
- data/doc/anti-amnesia/20250727-180000-post-id-num-refactoring.md +73 -0
- data/doc/anti-amnesia/20250728-124243-aaa-syntax-clarification.md +46 -0
- data/doc/anti-amnesia/20250728-124421-conversation-summary-concise.md +124 -0
- data/doc/anti-amnesia/20250729-190000-scriptorium-tui-testing-complete.md +46 -0
- data/doc/anti-amnesia/20250729-200000-scriptorium-tui-testing-edit-file-workflow.md +97 -0
- data/doc/anti-amnesia/20250729-210000-reddit-autopost-integration-complete.md +158 -0
- data/doc/anti-amnesia/20250729-211500-dependency-management-system.md +211 -0
- data/doc/anti-amnesia/20250729-213000-python-virtual-environment-setup.md +141 -0
- data/doc/anti-amnesia/20250729-214500-theme-management-commands.md +211 -0
- data/doc/anti-amnesia/20250729-215000-version-update-to-0.6.0.md +134 -0
- data/doc/anti-amnesia/20250729-220000-user-guide-complete.md +41 -0
- data/doc/anti-amnesia/20250804-190500-cognitive-loop-bug.md +45 -0
- data/doc/anti-amnesia/20250804-190700-anti-amnesia-timestamping-fix.md +30 -0
- data/doc/anti-amnesia/20250804-213700-publishing-test-fix.md +49 -0
- data/doc/anti-amnesia/20250804-214400-additional-test-fixes.md +46 -0
- data/doc/anti-amnesia/20250804-220000-asset-function-logic-clarification.md +41 -0
- data/doc/anti-amnesia/20250806-202032-asset-function-logic-clarification.md +41 -0
- data/doc/anti-amnesia/20250807-213025.md +116 -0
- data/doc/anti-amnesia/20250813-082428-syntax-highlighting-and-navigation-improvements.md +256 -0
- data/doc/banner_svg_config.md +114 -0
- data/doc/contrib.lt3 +8 -0
- data/doc/dependencies.md +281 -0
- data/doc/hacker.lt3 +5 -0
- data/doc/reddit_credentials_template.json +8 -0
- data/doc/reddit_integration.md +207 -0
- data/doc/user.lt3 +38 -0
- data/doc/user_guide_section_1.md +137 -0
- data/doc/user_guide_section_10.md +515 -0
- data/doc/user_guide_section_11.md +708 -0
- data/doc/user_guide_section_2.md +233 -0
- data/doc/user_guide_section_3.md +5 -0
- data/doc/user_guide_section_4.md +221 -0
- data/doc/user_guide_section_5.md +243 -0
- data/doc/user_guide_section_6.md +147 -0
- data/doc/user_guide_section_7.md +311 -0
- data/doc/user_guide_section_8.md +224 -0
- data/doc/user_guide_section_9.md +375 -0
- data/doc/userdoc-toc.txt +88 -0
- data/lib/rouge/lexers/livetext.rb +74 -0
- data/lib/scriptorium/api.rb +640 -0
- data/lib/scriptorium/banner_svg.rb +742 -0
- data/lib/scriptorium/contract.rb +33 -0
- data/lib/scriptorium/exceptions.rb +170 -1
- data/lib/scriptorium/helpers.rb +475 -0
- data/lib/scriptorium/post.rb +195 -0
- data/lib/scriptorium/reddit.rb +83 -0
- data/lib/scriptorium/repo.rb +624 -0
- data/lib/scriptorium/standard_files.rb +515 -0
- data/lib/scriptorium/syntax_highlighter.rb +234 -0
- data/lib/scriptorium/theme.rb +179 -0
- data/lib/scriptorium/version.rb +2 -2
- data/lib/scriptorium/view.rb +976 -0
- data/lib/scriptorium/widgets/featured_posts.rb +149 -0
- data/lib/scriptorium/widgets/links.rb +112 -0
- data/lib/scriptorium/widgets/pages.rb +133 -0
- data/lib/scriptorium/widgets/widget.rb +133 -0
- data/lib/scriptorium.rb +21 -40
- data/lib/skeleton.rb +8 -2
- data/scriptorium.gemspec +15 -4
- data/test/README.md +69 -0
- data/test/all +43 -0
- data/test/api_demo.rb +99 -0
- data/test/assets/imagenotfound.jpg +0 -0
- data/test/assets/images/.DS_Store +0 -0
- data/test/assets/images/README.md +27 -0
- data/test/assets/images/odd_aspect.png +0 -0
- data/test/assets/images/perfect.png +0 -0
- data/test/assets/images/small.png +0 -0
- data/test/assets/images/tall.png +0 -0
- data/test/assets/images/very_tall.png +0 -0
- data/test/assets/images/very_wide.png +0 -0
- data/test/assets/images/wide.png +0 -0
- data/test/assets/testbanner.jpg +0 -0
- data/test/banner_svg/simple_helpers.rb +13 -0
- data/test/banner_svg/unit.rb +768 -0
- data/test/ed_test.rb +204 -0
- data/test/integration/cursor_banner_combinations.rb +193 -0
- data/test/integration/cursor_banner_features.rb +374 -0
- data/test/integration/integration_test.rb +326 -0
- data/test/livetext_plugin_test.rb +229 -0
- data/test/manual/asset_mgmt.rb +67 -0
- data/test/manual/banner-tests/config.txt +3 -0
- data/test/manual/banner-tests/index.html +45 -0
- data/test/manual/banner-tests/test01.html +58 -0
- data/test/manual/banner-tests/test02.html +58 -0
- data/test/manual/banner-tests/test03.html +58 -0
- data/test/manual/banner-tests/test04.html +65 -0
- data/test/manual/banner-tests/test05.html +65 -0
- data/test/manual/banner-tests/test06.html +65 -0
- data/test/manual/banner-tests/test07.html +65 -0
- data/test/manual/banner-tests/test08.html +59 -0
- data/test/manual/banner-tests/test09.html +59 -0
- data/test/manual/banner-tests/test10.html +59 -0
- data/test/manual/banner-tests/test11.html +59 -0
- data/test/manual/banner-tests/test12.html +59 -0
- data/test/manual/banner-tests/test13.html +59 -0
- data/test/manual/banner-tests/test14.html +59 -0
- data/test/manual/banner-tests/test15.html +58 -0
- data/test/manual/banner-tests/test16.html +58 -0
- data/test/manual/banner-tests/test17.html +58 -0
- data/test/manual/banner-tests/test18.html +68 -0
- data/test/manual/banner-tests/test19.html +68 -0
- data/test/manual/banner-tests/test20.html +68 -0
- data/test/manual/banner-tests/test21.html +68 -0
- data/test/manual/banner-tests/test22.html +68 -0
- data/test/manual/banner-tests/test23.html +68 -0
- data/test/manual/banner-tests/test24.html +68 -0
- data/test/manual/banner-tests/test25.html +67 -0
- data/test/manual/banner_environment.rb +192 -0
- data/test/manual/deploy_symlink_demo.rb +142 -0
- data/test/manual/environment.rb +67 -0
- data/test/manual/make_banner.rb +153 -0
- data/test/manual/sample_banner_config.txt +12 -0
- data/test/manual/symlink_demo.rb +117 -0
- data/test/manual/test1.rb +47 -0
- data/test/manual/test2.rb +12 -0
- data/test/manual/test3.rb +38 -0
- data/test/manual/test4.rb +40 -0
- data/test/manual/test5.rb +24 -0
- data/test/manual/test6.rb +73 -0
- data/test/manual/test_banner_combinations.rb +120 -0
- data/test/manual/test_banner_features.rb +306 -0
- data/test/manual/test_banner_from_file.rb +150 -0
- data/test/manual/test_banner_in_header.rb +35 -0
- data/test/manual/test_code_highlighting.rb +68 -0
- data/test/manual/test_complex_header.rb +74 -0
- data/test/manual/test_empty_header.rb +32 -0
- data/test/manual/test_radial_custom.rb +58 -0
- data/test/manual/test_radial_large_radius.rb +52 -0
- data/test/manual/test_svg_debug.rb +47 -0
- data/test/manual/test_syntax_highlighting.rb +147 -0
- data/test/pages-demo/config/currentview.txt +1 -0
- data/test/pages-demo/views/demo/config/bootstrap_css.txt +5 -0
- data/test/pages-demo/views/demo/config/bootstrap_js.txt +4 -0
- data/test/pages-demo/views/demo/config/common.js +57 -0
- data/test/pages-demo/views/demo/config/footer.txt +1 -0
- data/test/pages-demo/views/demo/config/global-head.txt +8 -0
- data/test/pages-demo/views/demo/config/header.txt +1 -0
- data/test/pages-demo/views/demo/config/layout.txt +1 -0
- data/test/pages-demo/views/demo/config/left.txt +1 -0
- data/test/pages-demo/views/demo/config/main.txt +1 -0
- data/test/pages-demo/views/demo/config/right.txt +1 -0
- data/test/pages-demo/views/demo/config.txt +3 -0
- data/test/pages-demo/views/demo/output/panes/footer.html +1 -0
- data/test/pages-demo/views/demo/output/panes/header.html +1 -0
- data/test/pages-demo/views/demo/output/panes/left.html +1 -0
- data/test/pages-demo/views/demo/output/panes/main.html +1 -0
- data/test/pages-demo/views/demo/output/panes/right.html +1 -0
- data/test/rubytext/rubytext_comprehensive_test.rb +307 -0
- data/test/rubytext/rubytext_demo_test.rb +42 -0
- data/test/rubytext/rubytext_testing_guide.md +277 -0
- data/test/run_automated_tests.rb +45 -0
- data/test/scriptorium-TEST-1754622690-146/config/bootstrap_css.txt +5 -0
- data/test/scriptorium-TEST-1754622690-146/config/bootstrap_js.txt +4 -0
- data/test/scriptorium-TEST-1754622690-146/config/common.js +57 -0
- data/test/scriptorium-TEST-1754622690-146/config/currentview.txt +1 -0
- data/test/scriptorium-TEST-1754622690-146/config/global-head.txt +9 -0
- data/test/scriptorium-TEST-1754622690-146/config/last_post_num.txt +1 -0
- data/test/scriptorium-TEST-1754622690-146/config/os_helpers.rb +4 -0
- data/test/scriptorium-TEST-1754622690-146/config/widgets.txt +3 -0
- data/test/scriptorium-TEST-1754622690-146/posts/0001/meta.txt +8 -0
- data/test/scriptorium-TEST-1754622690-146/posts/0001/source.lt3 +6 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/README.txt +1 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/config.txt +1 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/initial/post.lt3 +12 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/layout/config/footer.txt +2 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/layout/config/header.txt +4 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/layout/config/left.txt +3 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/layout/config/main.txt +5 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/layout/config/right.txt +3 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/layout/gen/text.css +1 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/layout/layout.txt +5 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/templates/index.lt3 +1 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/templates/index_entry.lt3 +14 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/templates/post.lt3 +13 -0
- data/test/scriptorium-TEST-1754622690-146/themes/standard/templates/widget.lt3 +1 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/bootstrap_css.txt +5 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/bootstrap_js.txt +4 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/common.js +57 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/deploy.txt +5 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/footer.txt +2 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/global-head.txt +9 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/header.txt +4 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/layout.txt +5 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/left.txt +3 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/main.txt +5 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/reddit.txt +10 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/right.txt +3 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/social.txt +7 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config/status.txt +7 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/config.txt +3 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/layout/footer.html +3 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/layout/header.html +3 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/layout/left.html +3 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/layout/main.html +3 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/layout/right.html +3 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/output/panes/footer.html +1 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/output/panes/header.html +1 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/output/panes/left.html +1 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/output/panes/main.html +1 -0
- data/test/scriptorium-TEST-1754622690-146/views/sample/output/panes/right.html +1 -0
- data/test/staging/.DS_Store +0 -0
- data/test/syntax_highlighting_test.lt3 +124 -0
- data/test/test_helpers.rb +230 -0
- data/test/tui_editor_integration_test.rb +296 -0
- data/test/tui_integration_test.rb +637 -0
- data/test/unit/api.rb +1056 -0
- data/test/unit/asset_management.rb +245 -0
- data/test/unit/clipboard_test.rb +60 -0
- data/test/unit/contract_test.rb +91 -0
- data/test/unit/core.rb +857 -0
- data/test/unit/deploy_test.rb +187 -0
- data/test/unit/gem_asset_management.rb +189 -0
- data/test/unit/livetext_basic.rb +69 -0
- data/test/unit/livetext_compatibility.rb +89 -0
- data/test/unit/post.rb +244 -0
- data/test/unit/read_commented_file_test.rb +276 -0
- data/test/unit/reddit_test.rb +235 -0
- data/test/unit/repo.rb +548 -0
- data/test/unit/social_test.rb +369 -0
- data/test/unit/symlink_test.rb +213 -0
- data/test/unit/view.rb +431 -0
- data/test/unit/widgets.rb +669 -0
- data/test/wizard_test.rb +123 -0
- data/ui/README.md +67 -0
- data/ui/common/lib/ui_common.rb +8 -0
- data/ui/rubytext/README.md +191 -0
- data/ui/rubytext/bin/scriptorium-rubytext +402 -0
- data/ui/rubytext/lib/rubytext_ui.rb +300 -0
- data/ui/tui/bin/scriptorium +1420 -0
- data/ui/tui/test/tui_test.rb +23 -0
- data/ui/web/app/app.rb +1378 -0
- data/ui/web/app/error_helpers.rb +150 -0
- data/ui/web/app/views/advanced_config.erb +190 -0
- data/ui/web/app/views/asset_management.erb +589 -0
- data/ui/web/app/views/banner_config.erb +200 -0
- data/ui/web/app/views/configure_view.erb +401 -0
- data/ui/web/app/views/dashboard.erb +162 -0
- data/ui/web/app/views/deploy_config.erb +146 -0
- data/ui/web/app/views/edit_pages.erb +195 -0
- data/ui/web/app/views/edit_post.erb +54 -0
- data/ui/web/app/views/error_page.erb +29 -0
- data/ui/web/app/views/header_config.erb +155 -0
- data/ui/web/app/views/layout_config.erb +147 -0
- data/ui/web/app/views/navbar_config.erb +411 -0
- data/ui/web/app/views/view_dashboard.erb +138 -0
- data/ui/web/bin/scriptorium-web +153 -0
- data/ui/web/test/web_basic_test.rb +38 -0
- data/ui/web/test_navbar.txt +7 -0
- data/ui/web/tmp/web_server.log +5 -0
- data/ui/web/tmp/web_server.pid +1 -0
- metadata +359 -7
- data/lib/scriptorium/engine.rb +0 -22
- data/test/engine/unit.rb +0 -44
@@ -0,0 +1,235 @@
|
|
1
|
+
require 'minitest/autorun'
|
2
|
+
require_relative '../../lib/scriptorium'
|
3
|
+
require_relative '../test_helpers'
|
4
|
+
|
5
|
+
class RedditTest < Minitest::Test
|
6
|
+
include Scriptorium::Exceptions
|
7
|
+
include Scriptorium::Helpers
|
8
|
+
include TestHelpers
|
9
|
+
|
10
|
+
def setup
|
11
|
+
@test_dir = "test/reddit_test_files"
|
12
|
+
make_dir(@test_dir)
|
13
|
+
@repo = Scriptorium::Repo.create("test/scriptorium-TEST", testmode: true)
|
14
|
+
@view = @repo.create_view("test", "Test View", "A test view")
|
15
|
+
end
|
16
|
+
|
17
|
+
def teardown
|
18
|
+
FileUtils.rm_rf(@test_dir) if Dir.exist?(@test_dir)
|
19
|
+
Scriptorium::Repo.destroy if Scriptorium::Repo.testing
|
20
|
+
end
|
21
|
+
|
22
|
+
def test_001_reddit_class_initialization
|
23
|
+
reddit = Scriptorium::Reddit.new(@repo)
|
24
|
+
assert_instance_of Scriptorium::Reddit, reddit
|
25
|
+
assert_equal @repo, reddit.instance_variable_get(:@repo)
|
26
|
+
end
|
27
|
+
|
28
|
+
def test_002_reddit_credentials_file_path
|
29
|
+
reddit = Scriptorium::Reddit.new(@repo)
|
30
|
+
expected_path = @repo.root/:config/"reddit_credentials.json"
|
31
|
+
assert_equal expected_path, reddit.instance_variable_get(:@credentials_file)
|
32
|
+
end
|
33
|
+
|
34
|
+
def test_003_reddit_not_configured_when_no_credentials
|
35
|
+
reddit = Scriptorium::Reddit.new(@repo)
|
36
|
+
assert_equal false, reddit.configured?
|
37
|
+
end
|
38
|
+
|
39
|
+
def test_004_reddit_configured_when_credentials_exist
|
40
|
+
# Create a mock credentials file
|
41
|
+
credentials_file = @repo.root/:config/"reddit_credentials.json"
|
42
|
+
write_file(credentials_file, '{"client_id": "test", "client_secret": "test"}')
|
43
|
+
|
44
|
+
reddit = Scriptorium::Reddit.new(@repo)
|
45
|
+
assert_equal true, reddit.configured?
|
46
|
+
end
|
47
|
+
|
48
|
+
def test_005_reddit_config_returns_nil_when_not_configured
|
49
|
+
reddit = Scriptorium::Reddit.new(@repo)
|
50
|
+
assert_nil reddit.config
|
51
|
+
end
|
52
|
+
|
53
|
+
def test_006_reddit_config_returns_parsed_json_when_configured
|
54
|
+
# Create a valid credentials file
|
55
|
+
credentials_data = {
|
56
|
+
"client_id" => "test_id",
|
57
|
+
"client_secret" => "test_secret",
|
58
|
+
"username" => "test_user",
|
59
|
+
"password" => "test_pass",
|
60
|
+
"user_agent" => "test_agent"
|
61
|
+
}
|
62
|
+
credentials_file = @repo.root/:config/"reddit_credentials.json"
|
63
|
+
write_file(credentials_file, JSON.generate(credentials_data))
|
64
|
+
|
65
|
+
reddit = Scriptorium::Reddit.new(@repo)
|
66
|
+
config = reddit.config
|
67
|
+
|
68
|
+
assert_instance_of Hash, config
|
69
|
+
assert_equal "test_id", config["client_id"]
|
70
|
+
assert_equal "test_secret", config["client_secret"]
|
71
|
+
end
|
72
|
+
|
73
|
+
def test_007_reddit_config_handles_invalid_json
|
74
|
+
# Create an invalid JSON file
|
75
|
+
credentials_file = @repo.root/:config/"reddit_credentials.json"
|
76
|
+
write_file(credentials_file, "invalid json content")
|
77
|
+
|
78
|
+
reddit = Scriptorium::Reddit.new(@repo)
|
79
|
+
config = reddit.config
|
80
|
+
|
81
|
+
assert_nil config
|
82
|
+
end
|
83
|
+
|
84
|
+
def test_008_repo_reddit_method_returns_reddit_instance
|
85
|
+
reddit_instance = @repo.reddit
|
86
|
+
assert_instance_of Scriptorium::Reddit, reddit_instance
|
87
|
+
end
|
88
|
+
|
89
|
+
def test_009_repo_reddit_method_caches_instance
|
90
|
+
reddit1 = @repo.reddit
|
91
|
+
reddit2 = @repo.reddit
|
92
|
+
assert_same reddit1, reddit2
|
93
|
+
end
|
94
|
+
|
95
|
+
def test_010_repo_reddit_configured_method
|
96
|
+
assert_equal false, @repo.reddit_configured?
|
97
|
+
|
98
|
+
# Create credentials file
|
99
|
+
credentials_file = @repo.root/:config/"reddit_credentials.json"
|
100
|
+
write_file(credentials_file, '{"client_id": "test"}')
|
101
|
+
|
102
|
+
assert_equal true, @repo.reddit_configured?
|
103
|
+
end
|
104
|
+
|
105
|
+
def test_011_autopost_requires_credentials_file
|
106
|
+
reddit = Scriptorium::Reddit.new(@repo)
|
107
|
+
|
108
|
+
post_data = {
|
109
|
+
title: "Test Post",
|
110
|
+
url: "https://example.com/test",
|
111
|
+
content: "Test content"
|
112
|
+
}
|
113
|
+
|
114
|
+
assert_raises do
|
115
|
+
reddit.autopost(post_data)
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
def test_012_autopost_returns_false_when_config_invalid
|
120
|
+
# Create credentials file with missing required fields
|
121
|
+
credentials_file = @repo.root/:config/"reddit_credentials.json"
|
122
|
+
write_file(credentials_file, '{"client_id": "test"}') # Missing required fields
|
123
|
+
|
124
|
+
reddit = Scriptorium::Reddit.new(@repo)
|
125
|
+
|
126
|
+
post_data = {
|
127
|
+
title: "Test Post",
|
128
|
+
url: "https://example.com/test"
|
129
|
+
}
|
130
|
+
|
131
|
+
result = reddit.autopost(post_data)
|
132
|
+
assert_equal false, result
|
133
|
+
end
|
134
|
+
|
135
|
+
def test_013_autopost_returns_false_when_no_subreddit_specified
|
136
|
+
# Create valid credentials file
|
137
|
+
credentials_data = {
|
138
|
+
"client_id" => "test_id",
|
139
|
+
"client_secret" => "test_secret",
|
140
|
+
"username" => "test_user",
|
141
|
+
"password" => "test_pass",
|
142
|
+
"user_agent" => "test_agent"
|
143
|
+
}
|
144
|
+
credentials_file = @repo.root/:config/"reddit_credentials.json"
|
145
|
+
write_file(credentials_file, JSON.generate(credentials_data))
|
146
|
+
|
147
|
+
reddit = Scriptorium::Reddit.new(@repo)
|
148
|
+
|
149
|
+
post_data = {
|
150
|
+
title: "Test Post",
|
151
|
+
url: "https://example.com/test"
|
152
|
+
}
|
153
|
+
|
154
|
+
result = reddit.autopost(post_data)
|
155
|
+
assert_equal false, result
|
156
|
+
end
|
157
|
+
|
158
|
+
def test_014_autopost_uses_subreddit_from_post_data
|
159
|
+
# Create valid credentials file
|
160
|
+
credentials_data = {
|
161
|
+
"client_id" => "test_id",
|
162
|
+
"client_secret" => "test_secret",
|
163
|
+
"username" => "test_user",
|
164
|
+
"password" => "test_pass",
|
165
|
+
"user_agent" => "test_agent"
|
166
|
+
}
|
167
|
+
credentials_file = @repo.root/:config/"reddit_credentials.json"
|
168
|
+
write_file(credentials_file, JSON.generate(credentials_data))
|
169
|
+
|
170
|
+
reddit = Scriptorium::Reddit.new(@repo)
|
171
|
+
|
172
|
+
post_data = {
|
173
|
+
title: "Test Post",
|
174
|
+
url: "https://example.com/test",
|
175
|
+
subreddit: "testsubreddit"
|
176
|
+
}
|
177
|
+
|
178
|
+
# Mock the Redd session to avoid actual API calls
|
179
|
+
mock_session = Minitest::Mock.new
|
180
|
+
mock_subreddit = Minitest::Mock.new
|
181
|
+
mock_submission = Minitest::Mock.new
|
182
|
+
|
183
|
+
# Stub the submit method to return the mock submission
|
184
|
+
def mock_subreddit.submit(*args, **kwargs)
|
185
|
+
Minitest::Mock.new
|
186
|
+
end
|
187
|
+
mock_session.expect :subreddit, mock_subreddit, ["testsubreddit"]
|
188
|
+
|
189
|
+
reddit.stub :create_reddit_session, mock_session do
|
190
|
+
result = reddit.autopost(post_data)
|
191
|
+
assert_equal true, result
|
192
|
+
end
|
193
|
+
|
194
|
+
mock_session.verify
|
195
|
+
end
|
196
|
+
|
197
|
+
def test_015_autopost_uses_default_subreddit_when_available
|
198
|
+
# Create valid credentials file with default subreddit
|
199
|
+
credentials_data = {
|
200
|
+
"client_id" => "test_id",
|
201
|
+
"client_secret" => "test_secret",
|
202
|
+
"username" => "test_user",
|
203
|
+
"password" => "test_pass",
|
204
|
+
"user_agent" => "test_agent",
|
205
|
+
"default_subreddit" => "defaultsubreddit"
|
206
|
+
}
|
207
|
+
credentials_file = @repo.root/:config/"reddit_credentials.json"
|
208
|
+
write_file(credentials_file, JSON.generate(credentials_data))
|
209
|
+
|
210
|
+
reddit = Scriptorium::Reddit.new(@repo)
|
211
|
+
|
212
|
+
post_data = {
|
213
|
+
title: "Test Post",
|
214
|
+
url: "https://example.com/test"
|
215
|
+
}
|
216
|
+
|
217
|
+
# Mock the Redd session to avoid actual API calls
|
218
|
+
mock_session = Minitest::Mock.new
|
219
|
+
mock_subreddit = Minitest::Mock.new
|
220
|
+
mock_submission = Minitest::Mock.new
|
221
|
+
|
222
|
+
# Stub the submit method to return the mock submission
|
223
|
+
def mock_subreddit.submit(*args, **kwargs)
|
224
|
+
Minitest::Mock.new
|
225
|
+
end
|
226
|
+
mock_session.expect :subreddit, mock_subreddit, ["defaultsubreddit"]
|
227
|
+
|
228
|
+
reddit.stub :create_reddit_session, mock_session do
|
229
|
+
result = reddit.autopost(post_data)
|
230
|
+
assert_equal true, result
|
231
|
+
end
|
232
|
+
|
233
|
+
mock_session.verify
|
234
|
+
end
|
235
|
+
end
|