# ========= Copyright 2026 @ Strukto.AI All Rights Reserved. ========= # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ========= Copyright 2026 @ Strukto.AI All Rights Reserved. ========= from mirage.resource.gslides.prompt import PROMPT, WRITE_PROMPT def test_prompt_includes_buckets_and_structure(): rendered = PROMPT.format(prefix="/gslides") assert "owned/" in rendered assert "shared/" in rendered assert "shared with you by others" in rendered assert "still in owned/" in rendered assert "gslide.json structure" in rendered text_path = (".slides[].pageElements[].shape.text" ".textElements[].textRun.content") assert text_path in rendered def test_write_prompt_examples_match_actual_signatures(): assert "gws-slides-presentations-create" in WRITE_PROMPT assert "--json" in WRITE_PROMPT assert '{"title":' in WRITE_PROMPT assert "gws-slides-presentations-batchUpdate" in WRITE_PROMPT assert "presentationId" in WRITE_PROMPT def test_write_prompt_documents_rm(): assert "rm " in WRITE_PROMPT assert ".gslide.json" in WRITE_PROMPT