# Copyright (c) Meta Platforms, Inc. and affiliates. # # 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. import os import shutil import tempfile import textwrap import unittest import pkg_resources from thrift.compiler.codemod.test_utils import read_file, run_binary, write_file # TODO(urielrivas): We can use clangr's unit-test formatting in the future. class RemoveCppNoexceptMove(unittest.TestCase): def setUp(self): tmp = tempfile.mkdtemp() self.addCleanup(shutil.rmtree, tmp, True) self.tmp = tmp self.addCleanup(os.chdir, os.getcwd()) os.chdir(self.tmp) self.maxDiff = None def test_basic_remove(self): write_file( "foo.thrift", textwrap.dedent( """\ struct Faa { 1: i32 faa1; 2: string faa2; } (cpp.noexcept_move, cpp.virtual) union Fee { 1: i32 fee1; 2: string fee2; } (cpp.noexcept_move) """ ), ) binary = pkg_resources.resource_filename(__name__, "codemod") run_binary(binary, "foo.thrift") self.assertEqual( read_file("foo.thrift"), textwrap.dedent( """\ struct Faa { 1: i32 faa1; 2: string faa2; } (cpp.virtual) union Fee { 1: i32 fee1; 2: string fee2; } \ """ ), )